@@ -24,8 +24,8 @@ implementation of JPA. If you've never used JPA before, that's OK, but you
2424might need to refer to the following sources of information at some points
2525in this text:
2626
27- - the http://hibernate.org/orm/documentation/5.6 /[documentation for Hibernate ORM],
28- - the https://jcp.org/aboutJava/communityprocess/mrel/jsr338/index.html[JPA 2 .2 specification], or
27+ - the http://hibernate.org/orm/documentation/{ormMinorVersion} /[documentation for Hibernate ORM],
28+ - the https://jakarta.ee/specifications/persistence/3.2/jakarta-persistence-spec-3.2[Jakarta Persistence 3 .2 specification], or
2929- https://www.manning.com/books/java-persistence-with-hibernate-second-edition[Java Persistence with Hibernate],
3030 the latest edition of the book originally titled _Hibernate in Action_.
3131
@@ -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.hibernate.org/orm/5.4 /topical/html_single/bytecode/BytecodeEnhancement.html
80+ :enhancer: https://docs.hibernate.org/orm/{ormMinorVersion} /topical/html_single/bytecode/
8181
8282Optionally, 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.hibernate.org/orm/5.4 /userguide/html_single/Hibernate_User_Guide.html #configurations
106+ :configuration-properties: https://docs.hibernate.org/orm/{ormMinorVersion} /userguide/html_single/#configurations
107107
108108
109109Hibernate Reactive is configured via the standard JPA `persistence.xml`
@@ -333,7 +333,7 @@ of framework code.
333333
334334=== Mapping entity classes
335335
336- :mapping-annotations: https://docs.hibernate.org/orm/5.4 /userguide/html_single/Hibernate_User_Guide.html #annotations
336+ :mapping-annotations: https://docs.hibernate.org/orm/{ormMinorVersion} /userguide/html_single/#annotations
337337:bean-validation: https://docs.hibernate.org/stable/validator/reference/en-US/html_single/#chapter-bean-constraints
338338
339339We won't have much to say about the entity classes here, simply because
@@ -578,8 +578,8 @@ custom reactive identifier generator.
578578
579579=== JSON Mapping
580580
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
581+ :orm-json-basic-mapping: https://docs.hibernate.org/orm/{ormMinorVersion} /userguide/html_single/#basic-mapping-json
582+ :orm-json-embeddable-mapping: https://docs.hibernate.org/orm/{ormMinorVersion} /userguide/html_single/#_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
585585Like 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.hibernate.org/orm/5.4 /userguide/html_single/Hibernate_User_Guide.html #fetching
1309+ :association-fetching: https://docs.hibernate.org/orm/{ormMinorVersion} /userguide/html_single/#fetching
13101310
13111311Achieving high performance in ORM means minimizing the number of round
13121312trips 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.hibernate.org/orm/5.4 /userguide/html_single/Hibernate_User_Guide.html #caching
1371+ :second-level-cache: https://docs.hibernate.org/orm/{ormMinorVersion} /userguide/html_single/#caching
13721372
13731373A classic way to reduce the number of accesses to the database is to
13741374use a second-level cache, allowing cached data to be shared between
0 commit comments