Package org.hibernate.cfg
Interface MultiTenancySettings
- All Known Subinterfaces:
AvailableSettings
- All Known Implementing Classes:
Environment
public interface MultiTenancySettings
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String
Specifies aMultiTenantConnectionProvider
to use.static final String
Specifies aCurrentTenantIdentifierResolver
to use, either: an instance ofCurrentTenantIdentifierResolver
, aClass
representing an class that implementsCurrentTenantIdentifierResolver
, or the name of a class that implementsCurrentTenantIdentifierResolver
.static final String
During bootstrap, Hibernate needs access to any Connection for access toDatabaseMetaData
.
-
Field Details
-
MULTI_TENANT_CONNECTION_PROVIDER
Specifies aMultiTenantConnectionProvider
to use. SinceMultiTenantConnectionProvider
is also a service, it may be configured directly via theStandardServiceRegistryBuilder
.- Since:
- 4.1
- See Also:
-
MULTI_TENANT_IDENTIFIER_RESOLVER
Specifies aCurrentTenantIdentifierResolver
to use, either:- an instance of
CurrentTenantIdentifierResolver
, - a
Class
representing an class that implementsCurrentTenantIdentifierResolver
, or - the name of a class that implements
CurrentTenantIdentifierResolver
.
- an instance of
-
TENANT_IDENTIFIER_TO_USE_FOR_ANY_KEY
During bootstrap, Hibernate needs access to any Connection for access toDatabaseMetaData
. This setting configures the name of the DataSource to use for this access- See Also:
-