Fuse ESB(Apache ServiceMixおよびKaraf)でOSGIサービスとして公開したいインターフェイスを持つコアライブラリがあります。目標は、他のバンドルがそれを使用できるようにすることです。このサービスはJPA(OpenJPA)とSpringを使用します。インターフェースは次のとおりです。
public interface PatientService {
public Patient find(Integer id);
}
とクラス:
@Repository
public class PatientServiceJpaImpl implements PatientService {
@PersistenceContext(unitName="psu")
private EntityManager entityManager;
@Override
public Patient find(Integer id) {
return entityManager.find(Patient.class, id);
}
}
以下は省略形META-INF/spring/beans.xml
です:
<beans xmlns="http://www.springframework.org/schema/beans" ...>
<context:annotation-config />
<context:component-scan base-package="..." />
<bean id="txManager" class="org.springframework.orm.jpa.JpaTransactionManager">
<property name="entityManagerFactory" ref="emf" />
</bean>
<bean id="emf" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
<property name="persistenceUnitName" value="psu" />
<property name="jpaVendorAdapter" ref="jpaAdapter" />
<property name="dataSource" ref="dataSource" />
</bean>
<bean id="jpaAdapter" class="org.springframework.orm.jpa.vendor.OpenJpaVendorAdapter" />
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
<property name="driverClassName" value="${database.driver}" />
<property name="url" value="${database.url}" />
<property name="username" value="${database.username}" />
<property name="password" value="${database.password}" />
</bean>
<bean class="org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor"/>
<bean class="org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor" />
</beans>
そしてMETA-INF/persistence.xml
(略称):
<persistence xmlns="http://java.sun.com/xml/ns/persistence" ...>
<persistence-unit name="psu" transaction-type="RESOURCE_LOCAL">
<class>...</class>
</persistence>
OSGi以外の環境では、すべてがうまく機能します。これはfelixmaven-bundle-pluginを使用するため、OSGiサービスを作成するために、以下を追加しましたOSGI-INF/blueprint/osgi-context.xml
。
<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.osgi.org/xmlns/blueprint/v1.0.0
http://www.osgi.org/xmlns/blueprint/v1.0.0/blueprint.xsd">
<bean id="patientService" class="com.test.service.PatientServiceJpaImpl" />
<service id="osgiPatientService" ref="patientService" interface="com.test.service.PatientService" />
</blueprint>
バンドルが正常にデプロイされ、サービスが登録されます。問題は、PatientService
が別のバンドルから参照されている場合、エンティティマネージャーが挿入されていないためNullPointerException
、find(Integer id)
メソッドにがスローされることです。以下は、消費者の抜粋ですMETA-INF/spring/consumer-context.xml
。
<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:jaxws="http://cxf.apache.org/jaxws"
xmlns:osgi="http://www.springframework.org/schema/osgi"
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://cxf.apache.org/jaxws
http://cxf.apache.org/schemas/jaxws.xsd
http://www.springframework.org/schema/osgi
http://www.springframework.org/schema/osgi/spring-osgi.xsd">
<bean id="patientServiceImpl" class="com.test.ws.PatientWebServiceImpl" >
<property name="patientService">
<osgi:reference interface="com.test.service.PatientService"/>
</property>
</bean>
...
</beans>
明確にするために、PatientService
はコンシューマーバンドルに注入されますが、エンティティマネージャーはプロバイダーバンドルに注入されません。また、元のサービスの開始時に次のログ出力が表示されるため、永続性ユニットの問題ではないようです。
125 psu TRACE [SpringOsgiExtenderThread-14] openjpa.Runtime - org.apache.openjpa.persistence.PersistenceProviderImpl@24a5031d creating container org.apache.openjpa.persistence.EntityManagerFactoryImpl@4d6f77b6 for PU psu.
何が起こっているのかを理解するために、オブジェクトメモリ参照とスタックトレースをPatientServiceJpaImpl
クラスのコンストラクターに記録しました。コンストラクターが2回呼び出されました(2つの異なるオブジェクトが作成されました)。
org.apache.felix
最初の出力は、で始まり、多かれ少なかれで終わるosgiコンテナから発信されているように見えますorg.apache.aries.blueprint
。org.springframework.osgi
2番目の出力は、で始まり、多かれ少なかれで終わるSpringFrameworkから発生しているように見えますorg.springframework.beans.BeanUtils
。
コンシューマーサービスが呼び出されると、その参照は、注入されたエンティティマネージャーを持たないブループリントのインスタンス化されたオブジェクトへの参照になります。また、ログから、オブジェクトのブループリントのインスタンス化の後に永続性ユニットがインスタンス化されPatientServiceJpaImpl
ます。
私はかなり長い間この問題を検索していじくり回してきました、そして私はアイデアを使い果たしました。皮肉なことに、実際にはある時点で機能していましたが、機能させるために多くの変更を加えたため、ネズミの巣であったため、元に戻すことができませんでした。
ブループリント管理対象オブジェクトに永続コンテキストが挿入されないのはなぜですか?任意のアイデアをいただければ幸いです。ありがとう。