如何在Spring中使用WAS标准持久性提供程序

时间:2014-05-19 11:24:55

标签: spring-mvc jpa websphere jpa-2.0 spring-portlet-mvc

我正在开发一个在WebSphere Application Server中运行的portlet( - 如果它是一个servlet而不是一个portlet,我接受同样的问题)。目前它取决于Hibernate。由于WAS本身提供了JPA实现,这是OpenJPA 2.0的修改版本,我想摆脱Hibernate。

这是我的设置。的persistence.xml:

  <?xml version="1.0" encoding="UTF-8"?>
  <persistence xmlns="http://java.sun.com/xml/ns/persistence"
               xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.0"
               xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd"
  >
      <persistence-unit name="default" transaction-type="JTA">
          <provider>org.hibernate.ejb.HibernatePersistence</provider>

          <jta-data-source>jdbc/myDb</jta-data-source>
          <properties>
              <property name="hibernate.transaction.jta.platform" value="org.hibernate.service.jta.platform.internal.WebSphereExtendedJtaPlatform" />
              <property name="hibernate.dialect" value="org.hibernate.dialect.DB2Dialect" />
          </properties>
      </persistence-unit>
  </persistence>

时,MyPortlet-portlet.xml中

  <!-- ... -->

  <tx:jta-transaction-manager />
  <jee:jndi-lookup jndi-name="jdbc/myDb" cache="true" id="dataSource" expected-type="javax.sql.DataSource" />

  <bean id="entityManagerFactory" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
    <property name="dataSource" ref="dataSource" />
    <property name="persistenceUnitName" value="default" />
  </bean>

在我的DAO类中,我使用注释访问entityManager:

  @PersistenceContext(unitName = "default")
  private EntityManager entityManager;

使用Hibernate一切正常。

根据WebSphere Application Server文档,如果未使用persistence.xml中的<provider/> - 标记指定默认持久性提供程序,则使用默认持久性提供程序。但在评论出提供者规范之后,Spring因为无法找到提供者类而引发异常:

org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory' defined in PortletContext resource [/WEB-INF/myPortlet-portlet.xml]: Invocation of init method failed; nested exception is java.lang.IllegalArgumentException: No PersistenceProvider specified in EntityManagerFactory configuration, and chosen PersistenceUnitInfo does not specify a provider class name either

如何将提供的JPA实现与Spring(Portlet)MVC一起使用?

2 个答案:

答案 0 :(得分:1)

简短回答

如果要使用LocalContainerEntityManagerFactoryBean,则不能通过省略提供程序来使用WebSphere的默认提供程序。

答案很长

通常,实体管理器由容器提供的实体管理器工厂创建。您可以通过手动执行上下文loopkup(EntityManager em = (EntityManager) ctx.lookup(...))或使用Springs jndi-lookup功能来检索它:

<beans>
    <jee:jndi-lookup id="myEmf" jndi-name="persistence/myPersistenceUnit"/>
</beans>

在问题中,使用了一种不同的方法,LocalContainerEntityManagerFactoryBean,它创建了一个实体管理器工厂。此实体管理器工厂是实现本机实体管理器工厂的所有接口的代理。为了创建这样的代理,Spring必须知道本机实体管理器工厂的类。 Spring使用三种不同的方法来确定类:

  1. 通过persistence.xml中的<provider/> - 条目
  2. 检测它
  3. 询问jpaVendorAdapter(在工厂bean的同名属性中指定)
  4. 使用工厂bean的entityManagerFactoryInterface-property
  5. 这就是为什么你不能完全省略你的提供者的规范。

答案 1 :(得分:0)

这很有可能发生,因为您在应用程序中包含的Spring JAR包含Persistence类或其他JPA类的不同实现,用于“引导”JPA。

如果您想使用WebSphere的默认提供程序(或者更确切地说,使用通过WebSphere管理屏幕配置的JPA),那么您必须确保在运行时调用的JPA“引导”代码是WebSphere的,而不是你的。

你应该寻找一个不会混淆JPA的Spring发行版JAR。