私は次の構造を持っています:
共通モジュール
- 共通モジュール関連のサービス、および永続化 API が含まれています。
- 共通持続性コンテキストtest-common-persistence-context.xmlが含まれています。
search-module (共通モジュールに依存)
- 検索モジュールに関連するモデル Bean (JPA エンティティ アノテーションでマークされている)、サービス、および永続化 API が含まれています。
- 検索モジュール関連のスプリング コンテキスト ファイルが含まれています
予約モジュール (共通モジュールに依存) - 予約モジュールに関連するモデル Bean (JPA エンティティ アノテーションでマークされている)、サービス、および永続化 API が含まれます - 予約モジュールに関連する Spring コンテキスト ファイルが含まれます
common-module にはtest-common-persistence-context.xmlがあります。タイプがorg.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBeanのsessionFactory Bean の場合、プロパティ「packagesToScan」の値を JPA が含まれるパッケージに設定する必要があります。モデル Bean とマークされたエンティティ アノテーションが存在します。それがないと、例外Unknown entity: MY_ENTITY_NAMEが発生します。
共通モジュール: test-common-persistence-context.xml
<?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"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">
<!-- Property Place Holder -->
<context:property-placeholder location="classpath:test-common-persistence-bundle.properties" />
<!-- Data Source -->
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="${test.db.driverClassName}"/>
<property name="url" value="${test.db.jdbc.url}"/>
<property name="username" value="${test.db.username}"/>
<property name="password" value="${test.db.password}"/>
</bean>
<!--
Hibernate Configuration
-->
<bean id="sessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean" >
<property name="dataSource" ref="dataSource"/>
<property name="packagesToScan" value="${test.packages.to.scan.jpa.annotations}"/>
<property name="hibernateProperties">
<value>
<!-- SQL dialect -->
hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect
hibernate.hbm2ddl.auto=update
</value>
</property>
</bean>
<!-- Transaction Manager -->
<bean id="txManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
<property name="sessionFactory" ref="sessionFactory"/>
</bean>
<tx:annotation-driven transaction-manager="txManager"/>
</beans>
私の共通モジュールにはJPAエンティティがないため、スキャンするパッケージがないため、「packagesToScan」プロパティ値を空のままにします
ただし、それぞれのモジュールの JPA エンティティが検出されるように、検索モジュールと予約モジュールのテスト ( SearchPersistenceTestBase.java ) で同じ永続化コンテキストを使用する必要があります。
検索モジュール: SearchPersistenceTestBase.java
@Ignore
@ContextConfiguration(locations = {
"classpath:test-common-persistence-context.xml",
"classpath:test-search-spring-context.xml"})
@TransactionConfiguration(transactionManager="txManager", defaultRollback=true)
public class SearchPersistenceTestBase extends AbstractTransactionalJUnit4SpringContextTests {
}
上記のセットアップでこの望ましい動作を実現する方法を教えてください。
**私が試したアプローチ**
プロパティファイルから値が設定される追加の java.lang.String タイプの Bean を使用することを考えました
<bean id="entityPackagesToScan" class="java.lang.String">
<constructor-arg value="${test.packages.to.scan.jpa.annotations}" />
</bean>
test.packages.to.scan.jpa.annotationsは、test-common-persistence-bundle.propertiesで空として定義されています。
そして、test-search-spring-context.xmlの Bean 定義をオーバーライドします。
test-search-spring-context.xml
<?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"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">
<!-- Property Place Holder -->
<context:property-placeholder location="classpath:test-search-bundle.properties" />
.. context-component scan elements here
<bean id="entityPackagesToScan" class="java.lang.String">
<constructor-arg value="${test.packages.to.scan.jpa.annotations}" />
</bean>
</beans>
test.packages.to.scan.jpa.annotationsは、 test-search-bundle.propertiesで「com.search.model」として定義されています。
しかし、これは機能せず、例外Unknown entity: MY_ENTITY_NAMEが発生しました
ありがとう、
ジグネッシュ