Bean injection mechanism for MultiTenantConnectionProvider and TenantIdentifierResolver

Description

For multitenancy support, Hibernate instantiates the classes referred by configuration:
org.hibernate.cfg.Environment.MULTI_TENANT_CONNECTION_PROVIDER and org.hibernate.cfg.Environment.MULTI_TENANT_IDENTIFIER_RESOLVER however provides no way to inject beans (e.g. DataSource, ApplicationContext, etc.) to these instances.

We use static final variables as workarounds like this in our Spring configuration: (which seem to work, but not clean)

SoluvasMultiTenantConnectionProviderImpl.java :

SoluvasTenantIdentifierResolver.java :

Other threads that point or request this capability: http://stackoverflow.com/questions/16213573/setting-up-a-multitenantconnectionprovider-using-hibernate-4-2-and-spring-3-1-1

Activity

Show:

Hendy IrawanAugust 5, 2015 at 10:01 PM

Thank you Mauricio! Awesome

Mauricio Hiroshi NagaokaAugust 5, 2015 at 7:16 PM

Hendy IrawanJuly 20, 2015 at 4:46 AM

Thank you Steve. I was not aware of it.

So we can put either:
1. The object itself (only programmatic, not from xml config)
2. String containing name of the spring bean (both programmatic and xml config). This I'm not sure, is hibernate aware of spring application context?

Steve EbersoleJuly 19, 2015 at 4:27 PM

Well first, it is simply not true that Hibernate "instantiates the classes referred by ... MULTI_TENANT_CONNECTION_PROVIDER and MULTI_TENANT_IDENTIFIER_RESOLVER". Hibernate first tries to treat these settings as objects of their intended types, (MultiTenantConnectionProvider for MULTI_TENANT_CONNECTION_PROVIDER and CurrentTenantIdentifierResolver for MULTI_TENANT_IDENTIFIER_RESOLVER.

So just pass your beans in directly, configured however you want.

Beyond that, you'll have to explain exactly what you want.

AmitSMay 29, 2015 at 9:46 AM

I cannot use hibernate's multi-tenancy feature because I cannot autowire beans in MultiTenantConnectionProvider implementation. Hibernate tries to instantiate the bean by itself.
This issue is blocking me. Any updates on this issue?

Won't Fix

Details

Assignee

Reporter

Components

Affects versions

Priority

Created November 27, 2013 at 10:04 AM
Updated December 3, 2024 at 9:26 AM
Resolved October 13, 2015 at 1:39 PM