我使用实体bean和一些提供了HomeLocalHomeRemote接口的无状态ejb,在其中注入persistenceContext并获取EntityManager

作为新要求(在Karaf上进行迁移),我必须摆脱所有EJB。

我的问题是如何用简单的DAO类替换此无状态ejb,并在这些类中注入或获取实体管理器?

我的JPA提供程序处于休眠状态。

我需要一些示例,教程或任何形式的帮助。

最佳答案

您可以使用Apache Aries项目:

有趣的是您将使用蓝图,声明您的bean并定义一个服务(假设您要使用服务)

<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
           xmlns:jpa="http://aries.apache.org/xmlns/jpa/v1.0.0"
           xmlns:tx="http://aries.apache.org/xmlns/transactions/v1.0.0">

    <bean id="jpaDemo" init-method="init" class="org.demo.osgi.datasource.jpa.JpaComponentImpl">
        <jpa:context unitname="demo" property="entityManager"/>
        <tx:transaction method="*" value="Required"/>
    </bean>

    <service ref="jpaDemo" interface="org.demo.osgi.datasource.jpa.JpaComponent"/>

</blueprint>


然后JpaComponent可以使用注入的entityManager(Scala中的代码,但我确定您会明白的)

trait JpaComponent {

}
class JpaComponentImpl extends JpaComponent {

  val logger = org.slf4j.LoggerFactory.getLogger(classOf[JpaComponent])

  @BeanProperty
  var entityManager : EntityManager = _

  def init = {
    logger.info(s"em=${entityManager}")
  }
}


在包中放入persistence.xml(例如META-INF/persistence.xml)。示例如下:

<persistence-unit name="demo" transaction-type="JTA">
    <provider>org.hibernate.ejb.HibernatePersistence</provider>
    <jta-data-source>osgi:service/javax.sql.DataSource/(osgi.jndi.service.name=jdbc/jbtravel)</jta-data-source>
    <mapping-file>META-INF/airport.xml</mapping-file>
</persistence-unit>


您将需要以下功能:


pa
冬眠的
金迪
交易


和以下捆绑


mvn:org.apache.aries/org.apache.aries.util/1.0.1
mvn:org.apache.aries.jpa/org.apache.aries.jpa.api/1.0.1
mvn:org.apache.aries.jpa/org.apache.aries.jpa.container.context/1.0.1


另外设置以下OSGI元数据


元持久性:META-INF / persistence.xml
服务组件:*


另请参见https://github.com/rparree/osgi-demos/tree/master/datasource以获取上面的示例

07-24 09:23