Skip to content

Commit f47623e

Browse files
marko-bekhtaDavideD
authored andcommitted
[#2836] Point to docs.hibernate.org instead of docs.jboss.org/hibernate in various docs
1 parent 5fd73f3 commit f47623e

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

documentation/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@ def aggregateJavadocsTask = tasks.register( 'aggregateJavadocs', Javadoc ) {
5757

5858
links = [
5959
'https://docs.oracle.com/en/java/javase/11/docs/api/',
60-
'http://docs.jboss.org/hibernate/beanvalidation/spec/2.0/api/',
60+
'http://docs.hibernate.org/beanvalidation/spec/2.0/api/',
6161
'https://jakarta.ee/specifications/platform/8/apidocs/',
62-
"https://docs.jboss.org/hibernate/orm/" + ormMinorVersion + "/javadocs/"
62+
"https://docs.hibernate.org/orm/" + ormMinorVersion + "/javadocs/"
6363
]
6464

6565
options.addStringOption( 'Xdoclint:none', '-quiet' )

documentation/src/main/asciidoc/reference/introduction.adoc

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ You don't need to depend on the JDBC driver for your database.
7777
=== Optional dependencies
7878

7979
:slf4j: http://www.slf4j.org/
80-
:enhancer: https://docs.jboss.org/hibernate/orm/5.4/topical/html_single/bytecode/BytecodeEnhancement.html
80+
:enhancer: https://docs.hibernate.org/orm/5.4/topical/html_single/bytecode/BytecodeEnhancement.html
8181

8282
Optionally, you might also add any of the following additional features:
8383

@@ -103,7 +103,7 @@ There's an example {build}[Gradle build] included in the example program.
103103
=== Basic configuration
104104

105105
:xml: https://github.com/hibernate/hibernate-reactive/blob/main/examples/session-example/src/main/resources/META-INF/persistence.xml
106-
:configuration-properties: https://docs.jboss.org/hibernate/orm/5.4/userguide/html_single/Hibernate_User_Guide.html#configurations
106+
:configuration-properties: https://docs.hibernate.org/orm/5.4/userguide/html_single/Hibernate_User_Guide.html#configurations
107107

108108

109109
Hibernate Reactive is configured via the standard JPA `persistence.xml`
@@ -333,8 +333,8 @@ of framework code.
333333

334334
=== Mapping entity classes
335335

336-
:mapping-annotations: https://docs.jboss.org/hibernate/orm/5.4/userguide/html_single/Hibernate_User_Guide.html#annotations
337-
:bean-validation: https://docs.jboss.org/hibernate/stable/validator/reference/en-US/html_single/#chapter-bean-constraints
336+
:mapping-annotations: https://docs.hibernate.org/orm/5.4/userguide/html_single/Hibernate_User_Guide.html#annotations
337+
:bean-validation: https://docs.hibernate.org/stable/validator/reference/en-US/html_single/#chapter-bean-constraints
338338

339339
We won't have much to say about the entity classes here, simply because
340340
the principles behind mapping entity classes in Hibernate Reactive,
@@ -578,8 +578,8 @@ custom reactive identifier generator.
578578

579579
=== JSON Mapping
580580

581-
:orm-json-basic-mapping: https://docs.jboss.org/hibernate/orm/7.0/userguide/html_single/Hibernate_User_Guide.html#basic-mapping-json
582-
:orm-json-embeddable-mapping: https://docs.jboss.org/hibernate/orm/7.0/userguide/html_single/Hibernate_User_Guide.html#_jsonxml_aggregate_embeddable_mapping
581+
:orm-json-basic-mapping: https://docs.hibernate.org/orm/7.0/userguide/html_single/Hibernate_User_Guide.html#basic-mapping-json
582+
:orm-json-embeddable-mapping: https://docs.hibernate.org/orm/7.0/userguide/html_single/Hibernate_User_Guide.html#_jsonxml_aggregate_embeddable_mapping
583583
:string-to-json-converter: https://github.com/hibernate/hibernate-reactive/blob/main/hibernate-reactive-core/src/test/java/org/hibernate/reactive/types/StringToJsonConverter.java
584584

585585
Like in Hibernate ORM, it's possible to map a JSON field using the {orm-json-basic-mapping}[SqlTypes.JSON]
@@ -1306,7 +1306,7 @@ or `delete` queries, or even native SQL that calls a stored procedure!
13061306
13071307
=== Association fetching
13081308
1309-
:association-fetching: https://docs.jboss.org/hibernate/orm/5.4/userguide/html_single/Hibernate_User_Guide.html#fetching
1309+
:association-fetching: https://docs.hibernate.org/orm/5.4/userguide/html_single/Hibernate_User_Guide.html#fetching
13101310
13111311
Achieving high performance in ORM means minimizing the number of round
13121312
trips to the database. This goal should be uppermost in your mind
@@ -1368,7 +1368,7 @@ You can find much more information about association fetching in the
13681368
13691369
=== Enabling the second-level cache
13701370
1371-
:second-level-cache: https://docs.jboss.org/hibernate/orm/5.4/userguide/html_single/Hibernate_User_Guide.html#caching
1371+
:second-level-cache: https://docs.hibernate.org/orm/5.4/userguide/html_single/Hibernate_User_Guide.html#caching
13721372
13731373
A classic way to reduce the number of accesses to the database is to
13741374
use a second-level cache, allowing cached data to be shared between

0 commit comments

Comments
 (0)