Spring-Data JPA с мультитенантной Hibernate
Я пытаюсь заставить Spring-Data JPA работать с Hibernate с помощью пользовательского MultiTenantConnectionProvider.
Все в моей конфигурации ниже, кажется, работает. мойMultiTenantConnectionProviderImpl
Класс вызывается каждый раз, когда я пытаюсь вызвать метод Repository.
Основная проблема заключается в том, что невозможно предоставить идентификатор арендатора. Интерфейсы репозитория, предоставляемые Spring-Data, заботятся о получении Hibernate Session.
Есть ли способ предоставить Spring-Data идентификатор арендатора? Или есть где-нибудь, где мы можем перехватить создание Hibernate Session, чтобы мы могли соответствующим образом вызватьsessionFactory.withOptions().tenantIdentifier(itendintifier).openSession();
Вот мой XML-файл конфигурации Spring. Я старался держать его как можно дальше.
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:tx="http://www.springframework.org/schema/tx" xmlns:jpa="http://www.springframework.org/schema/data/jpa"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.2.xsd http://www.springframework.org/schema/data/jpa http://www.springframework.org/schema/data/jpa/spring-jpa.xsd">
<context:annotation-config/>
<context:component-scan base-package="com.company"/>
<jpa:repositories base-package="com.company.repositories"/>
<bean id="entityManagerFactory" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
<property name="packagesToScan" value="com.company.entities"/>
<property name="dataSource" ref="dataSource"/>
<property name="jpaVendorAdapter">
<bean class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter">
<property name="showSql" value="true"/>
</bean>
</property>
</bean>
<bean id="transactionManager" class="org.springframework.orm.hibernate4.HibernateTransactionManager">
<property name="sessionFactory" ref="sessionFactory"/>
</bean>
<bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">org.hibernate.dialect.SQLServer2012Dialect</prop>
<prop key="hibernate.format_sql">true</prop>
<prop key="hibernate.multi_tenant_connection_provider">com.company.hibernate.MultiTenantConnectionProviderImpl</prop>
<prop key="hibernate.multiTenancy">DATABASE</prop>
</props>
</property>
</bean>
<tx:annotation-driven transaction-manager="transactionManager"/>
<!--Vendor specific properties here-->
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="net.sourceforge.jtds.jdbc.Driver"/>
<property name="url" value="jdbc:jtds:sqlserver://localhost:1433/myDatabase"/>
<property name="username" value="username"/>
<property name="password" value="password"/>
</bean>
</beans>