找不到元素“持久性”的声明
Posted
技术标签:
【中文标题】找不到元素“持久性”的声明【英文标题】:Can not find the declaration of element 'persistence' 【发布时间】:2014-01-16 02:39:27 【问题描述】:已经把persistence.xml放在eclipse项目的classpath中 因为之前的错误是找不到文件。 现在给出这个错误:
原因:javax.persistence.PersistenceException:无效 持久性.xml。解析 XML 时出错 [行:-1,列:-1]: cvc-elt.1:
<persistence xmlns="http://java.sun.com/xml/ns/persistence"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.1"
xsi:schemalocation="http://java.sun.com/xml/ns/persistence
http://java.sun.com/xml/ns/persistence/persistence_2_1.xsd">
<persistence-unit name="default" transaction-type="RESOURCE_LOCAL">
<provider>org.hibernate.ejb.HibernatePersistence</provider>
<properties>
<property name="hibernate.dialect" value="org.hibernate.dialect.PostgreSQLDialect" />
<property name="javax.persistence.jdbc.url" value="jdbc:postgresql://localhost:5432/Automoveis" />
<property name="javax.persistence.jdbc.user" value="postgres" />
<property name="javax.persistence.jdbc.password" value="1234" />
<property name="javax.persistence.jdbc.driver" value="org.postgresql.jdbc.Driver" />
<property name="hibernate.show_sql" value="true" />
<property name="hibernate.format_sql" value="true" />
<property name="hibernate.hbm2ddl.auto" value="create" />
</properties>
</persistence-unit>
</persistence>
【问题讨论】:
请正确格式化 XML。摆脱所有那些>
。
几周前我遇到了同样的问题。您是手动创建 entityManagerFactory 吗?看起来您正在将“persistence.xml”传递给无法打开/找到此文件的构造函数。对我来说,当实体管理器由容器创建时一切正常。
【参考方案1】:
问题在于您混合使用 JPA 2.0 和 JPA 2.1 表示法。
这个
<persistence xmlns="http://xmlns.jcp.org/xml/ns/persistence"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence
http://xmlns.jcp.org/xml/ns/persistence/persistence_2_1.xsd"
version="2.1">
对于 JPA 2.1 或此
<persistence 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"
version="2.0">
适用于 JPA 2,但不能混合使用。
详情请见http://www.oracle.com/webfolder/technetwork/jsc/xml/ns/persistence/index.html。
【讨论】:
【参考方案2】:所提供的 XML 有一些小问题,可能是缺少版本,也可能是 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"
xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd"
version="2.0">
....
</persistence>
【讨论】:
JPA 是 2.1 版。当我把标签 xml 版本 1.0 的错误【参考方案3】:过去,当我使用 JPA 2.0 版的 persistence.xml 和 2.1 版的 orm.xml 文件时,我也遇到过类似的问题(找不到元素“实体映射”的声明)。我认为上面报告的错误是相似的。
JPA 2 的工作示例。仔细阅读下面的示例并记下它们的版本。确保它们与示例中的版本相同。您也可以使用 JPA 2.1 和适当的架构参考。
persistence.xml
<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="SANJUSEJB" transaction-type="JTA">
<jta-data-source>jdbc/sanjusDataSourceXA</jta-data-source>
<mapping-file>META-INF/orm.xml</mapping-file>
<class>org.sanjus.pa.ejb.entity.UserEntity</class>
</persistence-unit>
</persistence>
orm.xml
<entity-mappings xmlns="http://java.sun.com/xml/ns/persistence/orm" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/persistence/orm orm_2_0.xsd" version="2.0">
<named-query name="findUserJSONById">
<query>SELECT a.userJson FROM UserEntity a WHERE a.userId = :userId</query>
</named-query>
</entity-mappings>
【讨论】:
【参考方案4】:解决了!
我不知道到底出了什么问题,但效果很好:
<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="default" transaction-type="RESOURCE_LOCAL">
<provider>org.hibernate.ejb.HibernatePersistence</provider>
<properties>
<property name="javax.persistence.jdbc.driver" value="org.postgresql.Driver" />
<property name="javax.persistence.jdbc.url" value="jdbc:postgresql://localhost:5432/Automoveis" />
<property name="javax.persistence.jdbc.user" value="postgres" />
<property name="javax.persistence.jdbc.password" value="1234" />
<property name="hibernate.dialect" value="org.hibernate.dialect.PostgreSQLDialect" />
<property name="hibernate.hbm2ddl.auto" value="update" />
<property name="hibernate.show_sql" value="true" />
<property name="hibernate.format_sql" value="true"/>
</properties>
</persistence-unit>
【讨论】:
“我不知道到底出了什么问题”——在我的回答中,我确切地告诉了你出了什么问题。选择正确答案:meta.***.com/help/someone-answers以上是关于找不到元素“持久性”的声明的主要内容,如果未能解决你的问题,请参考以下文章