EclipseLink SessionCustomizer未被调用

时间:2017-05-10 14:09:46

标签: java jpa eclipselink

我正在使用JPA和EclipseLink for PostGreSQL。由于某些产品要求,我想切换架构运行时。我打算在"定制" SessionCustomizer的方法如下所示

@Override
public void customize(Session session) throws Exception {
System.out.println("calling customize ###################");
if (this.schemaName != null || !this.schemaName.isEmpty()) {
    session.getLogin().setTableQualifier(schemaName);
}

我在peristence.xml中设置了MySessionCustomizer。

但不知道何时以及谁将调用MySessionCustomizer的自定义方法。 请帮我理解这一点。

编辑: 这是我的persistence.xml



<persistence xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd"
  version="2.0" xmlns="http://java.sun.com/xml/ns/persistence">
  <persistence-unit name="test" >
    <class>com.demo.Student</class>
    <properties>
      <property name="eclipselink.session.customizer" value="com.demo.MySessionCustomizer"/>
      <property name="javax.persistence.jdbc.driver" value="org.postgresql.Driver" />
      <property name="javax.persistence.jdbc.url"    value="jdbc:postgresql://localhost:5432/MyDB" />
      <property name="javax.persistence.jdbc.user" value="username" />
      <property name="javax.persistence.jdbc.password" value="password" />
      <property name="eclipselink.ddl-generation" value="create-tables" />
      <property name="eclipselink.ddl-generation.output-mode" value="database" />
    </properties>
  </persistence-unit>
</persistence>
&#13;
&#13;
&#13;

我可以使用此persistence.xml连接到数据库,并从数据库的公共模式读取/写入。但是,我想从不同的模式读取和写入,我也希望能够在运行时更改模式。

我尝试使用&#34;?currentSchema = MYSCHEMA&#34;在DB URL中,但它没有工作。

0 个答案:

没有答案