gpt4 book ai didi

java - Hibernate 4 Multi-Tenancy 和 Spring 3 Hibernate

转载 作者:IT老高 更新时间:2023-10-28 13:47:21 32 4
gpt4 key购买 nike

全部

我正在评估 Hibernate 4(4.1.0) 和 Spring 3(3.1.0) 中存在的 Multi-Tenancy 功能,但无法使其与 HibernateTransaction 设置一起使用。我已经定义了如下设置。

LocalSessionFactoryBean:

@org.springframework.context.annotation.Configuration
public class Configuration {

@Inject private DataSource dataSource;
@Inject private MultiTenantConnectionProvider multiTenantConnectionProvider;

@Bean
public LocalSessionFactoryBean sessionFactory() throws IOException{
LocalSessionFactoryBean bean = new LocalSessionFactoryBean();
bean.setDataSource(dataSource);
bean.setPackagesToScan("com");
bean.getHibernateProperties().put("hibernate.multi_tenant_connection_provider", multiTenantConnectionProvider);
bean.getHibernateProperties().put("hibernate.multiTenancy", "SCHEMA");
bean.getHibernateProperties().put("hibernate.tenant_identifier_resolver", new CurrentTenantIdentifierResolverImpl());
bean.setConfigLocation(new ClassPathResource("/hibernate.cfg.xml"));
return bean;
}

}

Configuration.xml:

<context:component-scan base-package="com.green" />


<context:annotation-config />

<!-- Enable annotation style of managing transactions -->
<tx:annotation-driven transaction-manager="transactionManager" />

<!-- Declare a datasource that has pooling capabilities -->
<bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource"
destroy-method="close" p:driverClass="${app.jdbc.driverClassName}"
p:jdbcUrl="${app.jdbc.url}" p:user="${app.jdbc.username}" p:password="${app.jdbc.password}"
p:acquireIncrement="5" p:idleConnectionTestPeriod="60" p:maxPoolSize="100"
p:maxStatements="50" p:minPoolSize="10" />

<!-- Declare a transaction manager -->
<bean id="transactionManager"
class="com.green.saas.hibernate.SaasHibernateTransactionManager"
depends-on="sessionFactory" >
<property name="sessionFactory" ref="sessionFactory"></property>
<property name="dataSource" ref="dataSource"></property>
</bean>

如果我使用 spring 3 提供的普通 HibernateTransactionManager,我会收到错误租户标识符未设置,原因是,它会打开一个 session ,如下所示

  1. Session newSession = SessionFactoryUtils.openSession(getSessionFactory());
  2. (Session) ReflectionUtils.invokeMethod(openSessionMethod, sessionFactory) in openSession 方法
  3. Method openSessionMethod = ClassUtils.getMethod(SessionFactory.class, "openSession") 上面的openSessionMethod 参数定义为。

我们可以看到,在打开与租户标识符的 session 时,没有 Hook 可以按预期提供租户标识符,例如

Session newSession = getSessionFactory().withOptions().tenantIdentifier ( "abc" ).openSession();

class instance provided by hibernate property "hibernate.tenant_identifier_resolver" is called by which session is provided with tenant identifier.

为了克服这个问题,我扩展了 HibernateTransactionManager 类并覆盖了 doBegin 方法,并在打开新 session 的位置打开了它

getSessionFactory().withOptions().tenantIdentifier ( "abc" ).openSession();    

这使得事情点击和工作。

我只是想知道,上述方法是否可行,或者有一些我不知道的设置使其开箱即用。

提前致谢。

hibernate - 4.1.0 Spring - 3.1.0

最佳答案

您使用的版本似乎在 Hibernate 方面存在错误:SPR-9222 , HHH-7306 .

Hibernate版本4.1.4开始你应该使用CurrentTenantIdentifierResolver将当前租户 ID 传递给 SessionFactory

关于java - Hibernate 4 Multi-Tenancy 和 Spring 3 Hibernate,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9276938/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com