Spring-Data JPA mit mandantenfähigem Ruhezustand
Ich versuche, Spring-Data JPA mit einem benutzerdefinierten MultiTenantConnectionProvider in den Ruhezustand zu versetzen.
Alles in meiner Konfiguration scheint zu funktionieren. MeinMultiTenantConnectionProviderImpl
class wird jedes Mal aufgerufen, wenn ich versuche, eine Repository-Methode aufzurufen.
Das Hauptproblem ist, dass es keine Möglichkeit gibt, eine Mandanten-ID anzugeben. Die von Spring-Data bereitgestellten Repository-Schnittstellen sorgen dafür, dass die Hibernate-Sitzung abgerufen wird.
Gibt es eine Möglichkeit, Spring-Data als Mandanten-ID anzugeben? Oder gibt es irgendwo einen Ort, an dem wir die Erstellung der Hibernate-Sitzung abfangen können, damit wir @ entsprechend aufrufen könnesessionFactory.withOptions().tenantIdentifier(itendintifier).openSession();
Hier ist meine Spring-Konfigurations-XML-Datei. Ich habe versucht, es so kahl wie möglich zu halten.
<?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>