如何在OpenJPA中覆盖persistence.xml属性

时间:2011-05-02 13:37:58

标签: java jpa openjpa

我的persistence.xml中有以下属性:

<property name="openjpa.ConnectionProperties"
value="DriverClassName=com.mysql.jdbc.Driver,jdbcUrl=jdbc:mysql://localhost:3306/c,user=foo,password=foo,autocommit=false,automaticTestTable=testtable,idleConnectionTestPeriod=60"/>

我正在尝试使用系统属性覆盖它,根据docs,所以我设置了:

-Dopenjpa.ConnectionProperties=DriverClassName=com.mysql.jdbc.Driver,jdbcUrl=jdbc:mysql://localhost:3306/bar,user=bar,password=bar,autocommit=false,automaticTestTable=testtable,idleConnectionTestPeriod=60

但它不起作用:OpenJPA始终从persistence.xml中读取属性值

仅当删除persistence.xml中的属性时,它才会从系统属性中读取值。

这是预期的行为,如果是这样,从persistence.xml覆盖属性的正确方法是什么?

4 个答案:

答案 0 :(得分:4)

创建EM / EMF时,默认情况下OpenJPA不会查看SystemProperties。在创建EMF时尝试传入System.getProperties()。

Persistence.createEntityManagerFactory("pu_Name", System.getProperties());

答案 1 :(得分:1)

你是如何得到EntityManager的?您可以将属性传递给EntityManagerFactory并以这种方式覆盖persistence.xml。

答案 2 :(得分:1)

我怕你运气不好。 manual

  

在JPA中,Persistence类在运行时使用的标准META-INF / persistence.xml引导文件中的值会覆盖上述资源 [openjpa.xml] 中的值,以及任何系统属性设置。

我不知道为什么会这样,但就像那样。

但是,它也是如此:

  

在运行时传递给Persistence.createEntityManagerFactory的Map也会覆盖先前的设置,包括persistence.xml中定义的属性。

因此,如果您可以在那里获得设置,那就很好。

答案 3 :(得分:0)

在较新的OPENJPA(7.0.1)中,如果要覆盖persistence.xml中的属性,可以传递系统属性,或者在初始上下文中使用PU名称作为前缀,然后覆盖作为后缀的proprerty 。

原始的persistence.xml:

<persistence>
   <persistence-unit name="movie-unit">
   <provider>org.hibernate.ejb.HibernatePersistence</provider>
   <jta-data-source>movieDatabase</jta-data-source>
   <non-jta-data-source>movieDatabaseUnmanaged</non-jta-data-source>
   <properties>
     <property name="hibernate.hbm2ddl.auto" value="create-drop"/>
     <property name="hibernate.max_fetch_depth" value="3"/>
   </properties>
   </persistence-unit>
</persistence>

覆盖:

Properties p = new Properties();
p.put(Context.INITIAL_CONTEXT_FACTORY,"org.apache.openejb.client.LocalInitialContextFactory");
p.put("movie-unit.hibernate.hbm2ddl.auto", "update");
p.put("movie-unit.hibernate.dialect", "org.hibernate.dialect.HSQLDialect");
context = new InitialContext(p);

http://tomee.apache.org/configuring-persistenceunits-in-tests.html