0

环境:Tomcat-web 服务器、eclipselink-2.4.1(Juno) JPA、Odata4j 我正在使用 eclipse 链接进行 JPA(从表中生成动态实体)。我的 persistence.xml 看起来像

<persistence-unit name="abcLink"
        transaction-type="RESOURCE_LOCAL">
        <provider>org.eclipse.persistence.jpa.PersistenceProvider</provider>
        <mapping-file>META-INF/eclipselink-orm.xml</mapping-file>           
        <properties>
            <property name="javax.persistence.jdbc.driver" value="com.mysql.jdbc.Driver" />
            <property name="javax.persistence.jdbc.url" value="jdbc:mysql://localhost/netspectiveauthentication?zeroDateTimeBehavior=convertToNull"/>
            <property name="javax.persistence.jdbc.user" value="root" />
            <property name="javax.persistence.jdbc.password" value="" />
            <property name="eclipselink.ddl-generation" value="create-tables" />
            <property name="eclipselink.logging.level" value="INFO" />
            <property name="eclipselink.logging.exceptions" value="true" />     
        </properties>
    </persistence-unit> 

和在提供者类

String persistenceUnitName = "abcLink";      
          EntityManagerFactory emf = Persistence.createEntityManagerFactory(persistenceUnitName,properties);
            emf.createEntityManager();                   
            return new JPAProducer(emf, "abcd", 20);

我将它用于 ODATA4j 实现,因此在运行时将通过覆盖 ODataProducer 创建函数来获得属性我收到以下错误

javax.persistence.PersistenceException: Exception [EclipseLink-28017] (Eclipse Persistence Services - 2.4.1.v20121003-ad44345): org.eclipse.persistence.exceptions.EntityManagerSetupException
Exception Description: Unable to predeploy PersistenceUnit [AuthenticationServiceEclipseMysqlLink] in invalid state [DeployFailed].
Internal Exception: javax.persistence.PersistenceException: Exception [EclipseLink-28019] (Eclipse Persistence Services - 2.4.1.v20121003-ad44345): org.eclipse.persistence.exceptions.EntityManagerSetupException
Exception Description: Deployment of PersistenceUnit [AuthenticationServiceEclipseMysqlLink] failed. Close all factories for this PersistenceUnit.
Internal Exception: Exception [EclipseLink-7328] (Eclipse Persistence Services - 2.4.1.v20121003-ad44345): org.eclipse.persistence.exceptions.ValidationException
Exception Description: When using VIRTUAL access a DynamicClassLoader must be provided when creating the entity manager factory using the eclipselink property [eclipselink.classloader]. That is, createEntityManagerFactory(String persistenceUnitName, Map properties) and add a new DynamicClassLoader() to the Map properties.
    at org.eclipse.persistence.internal.jpa.EntityManagerSetupImpl.predeploy(EntityManagerSetupImpl.java:1226)
    at org.eclipse.persistence.jpa.PersistenceProvider.createEntityManagerFactory(PersistenceProvider.java:134)
    at javax.persistence.Persistence.createEntityManagerFactory(Unknown Source)

我认为错误很清楚,但我想知道,如何通过属性提供动态类加载器。或任何其他方式来摆脱这个错误。

4

1 回答 1

1

看看这个例子,在main方法的开头。

于 2013-02-21T14:59:30.283 回答