【问题标题】:Java persistence.xml multiple persistence-unit "cannot find symbol ... import"Java persistence.xml 多个持久性单元“找不到符号...导入”
【发布时间】:2012-11-02 20:44:16
【问题描述】:

我的 NetBeans-Maven-Project 出现问题。 如果我将另一个 Persistence-Unit 添加到具有相同实体的相同 persistence.xml 中,我会得到一些我不理解的异常。

<?xml version="1.0" encoding="UTF-8"?>
<persistence version="2.0" xmlns="http://java.sun.com/xml/ns/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">
  <persistence-unit name="com.xxx.plugin.connector_xxxAuthServices_war_firstPU" transaction-type="RESOURCE_LOCAL">
    <provider>org.eclipse.persistence.jpa.PersistenceProvider</provider>
    <class>com.xxx.plugin.entities.Businesspartner</class>
    <exclude-unlisted-classes>false</exclude-unlisted-classes>
    <shared-cache-mode>NONE</shared-cache-mode>
    <validation-mode>NONE</validation-mode>
    <properties>
      <property name="javax.persistence.jdbc.url" value="jdbc:mysql://localhost:3306/db_first?zeroDateTimeBehavior=convertToNull"/>
      <property name="javax.persistence.jdbc.password" value="xxx"/>
      <property name="javax.persistence.jdbc.driver" value="com.mysql.jdbc.Driver"/>
      <property name="javax.persistence.jdbc.user" value="root"/>
    </properties>
  </persistence-unit>

  <!--  
  <persistence-unit name="com.xxx.plugin.connector_xxxAuthServices_war_secondPU" transaction-type="RESOURCE_LOCAL">
    <provider>org.eclipse.persistence.jpa.PersistenceProvider</provider>
    <class>com.xxx.plugin.entities.Businesspartner</class>
    <exclude-unlisted-classes>false</exclude-unlisted-classes>
    <shared-cache-mode>NONE</shared-cache-mode>
    <validation-mode>NONE</validation-mode>
    <properties>
      <property name="javax.persistence.jdbc.url" value="jdbc:mysql://localhost:3306/db_second?zeroDateTimeBehavior=convertToNull"/>
      <property name="javax.persistence.jdbc.password" value="xxx"/>
      <property name="javax.persistence.jdbc.driver" value="com.mysql.jdbc.Driver"/>
      <property name="javax.persistence.jdbc.user" value="root"/>
    </properties>
  </persistence-unit>
  -->
</persistence>

如果我取消注释第二个 PU,我会得到一些例外:

------------------------------------------------------------------------
BUILD FAILURE
------------------------------------------------------------------------
Total time: 2.558s
Finished at: Wed Nov 14 10:26:32 CET 2012
Final Memory: 21M/56M
------------------------------------------------------------------------
Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.0.2:testCompile (default-testCompile) on project xxxAuthServices: Compilation failure: Compilation failure:
D:\Users\me\Documents\xxx\code\trunk\xxxAuthServices\src\test\java\com\xxx\plugin\webservices\MaterialsLoginRESTfulWSTest.java:[8,35] error: cannot find symbol

could not parse error message:   symbol:   class Businesspartner
location: package com.xxx.plugin.entities

MaterialsLoginRESTfulWSTest 是一个 jUnit-Test,第 9 行是“import com.xxx.plugin.entities.Businesspartner”。

我无计可施。 有没有人有答案可以帮我解决它...

最好的问候 扎克

【问题讨论】:

    标签: hibernate maven junit persistence.xml persistence-unit


    【解决方案1】:

    忘记发布我的修复/错误。 我的 Maven-Rep 获得了旧的或不匹配的版本。

    问候扎克

    【讨论】:

      猜你喜欢
      • 2013-08-18
      • 2011-05-25
      • 1970-01-01
      • 2016-03-18
      • 1970-01-01
      • 2017-08-18
      • 2023-03-18
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多