You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: documentation/src/main/asciidoc/introduction/Advanced.adoc
+11-11Lines changed: 11 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -316,8 +316,8 @@ To make use of multi-tenancy, we'll usually need to set at least one of these co
316
316
|===
317
317
| Configuration property name | Purpose
318
318
319
-
| `hibernate.tenant_identifier_resolver` | Specifies the `CurrentTenantIdentifierResolver`
320
-
| `hibernate.multi_tenant_connection_provider` | Specifies the `MultiTenantConnectionProvider`
319
+
| link:{doc-javadoc-url}org/hibernate/cfg/MultiTenancySettings.html#MULTI_TENANT_IDENTIFIER_RESOLVER[`hibernate.tenant_identifier_resolver`] | Specifies the `CurrentTenantIdentifierResolver`
320
+
| link:{doc-javadoc-url}org/hibernate/cfg/MultiTenancySettings.html#MULTI_TENANT_CONNECTION_PROVIDER[`hibernate.multi_tenant_connection_provider`] | Specifies the `MultiTenantConnectionProvider`
321
321
|===
322
322
323
323
Do not configure those properties if you would like the configured `BeanContainer` provide the implementation.
@@ -467,7 +467,7 @@ Furthermore, the link:{doc-javadoc-url}org/hibernate/annotations/ValueGeneration
467
467
// .The older APIs are still available in Hibernate 6
468
468
====
469
469
These APIs were new in Hibernate 6, and supersede the classic `IdentifierGenerator` interface and `@GenericGenerator` annotation from older versions of Hibernate.
470
-
However, the older APIs are still available and custom ``IdentifierGenerator``s written for older versions of Hibernate continue to work in Hibernate 6.
470
+
However, the older APIs are still available and custom ``IdentifierGenerator``s written for older versions of Hibernate continue to work in Hibernate 7.
471
471
====
472
472
473
473
Hibernate has a range of built-in generators which are defined in terms of this new framework.
@@ -477,12 +477,12 @@ Hibernate has a range of built-in generators which are defined in terms of this
| `@CurrentTimestamp` | `CurrentTimestampGeneration` | Generic support for database or in-memory generation of creation or update timestamps
483
-
| `@CreationTimestamp` | `CurrentTimestampGeneration` | A timestamp generated when an entity is first made persistent
484
-
| `@UpdateTimestamp` | `CurrentTimestampGeneration` | A timestamp generated when an entity is made persistent, and regenerated every time the entity is modified
485
-
| `@UuidGenerator` | `UuidGenerator` | A more flexible generator for RFC 4122 UUIDs
| link:{doc-javadoc-url}org/hibernate/annotations/CurrentTimestamp.html[`@CurrentTimestamp`] | `CurrentTimestampGeneration` | Generic support for database or in-memory generation of creation or update timestamps
483
+
| link:{doc-javadoc-url}org/hibernate/annotations/CreationTimestamp.html[`@CreationTimestamp`] | `CurrentTimestampGeneration` | A timestamp generated when an entity is first made persistent
484
+
| link:{doc-javadoc-url}org/hibernate/annotations/UpdateTimestamp.html[`@UpdateTimestamp`] | `CurrentTimestampGeneration` | A timestamp generated when an entity is made persistent, and regenerated every time the entity is modified
485
+
| link:{doc-javadoc-url}org/hibernate/annotations/UuidGenerator.html[`@UuidGenerator`] | `UuidGenerator` | A more flexible generator for RFC 4122 UUIDs
486
486
|===
487
487
488
488
Furthermore, support for JPA's standard id generation strategies is also defined in terms of this framework.
@@ -595,8 +595,8 @@ Custom naming strategies may be enabled using the configuration properties we al
595
595
|===
596
596
| Configuration property name | Purpose
597
597
598
-
| `hibernate.implicit_naming_strategy` | Specifies the `ImplicitNamingStrategy`
599
-
| `hibernate.physical_naming_strategy` | Specifies the `PhysicalNamingStrategy`
598
+
| link:{doc-javadoc-url}org/hibernate/cfg/MappingSettings.html#IMPLICIT_NAMING_STRATEGY[`hibernate.implicit_naming_strategy`] | Specifies the `ImplicitNamingStrategy`
599
+
| link:{doc-javadoc-url}org/hibernate/cfg/MappingSettings.html#PHYSICAL_NAMING_STRATEGY[`hibernate.physical_naming_strategy`] | Specifies the `PhysicalNamingStrategy`
0 commit comments