org.xml.sax.SAXParseException; lineNumber:10; columnNumber:18; cvc-complex-type.2.4.a:从元素'属性'开始发现无效内容。

时间:2016-03-03 01:53:11

标签: jpa xml-validation persistence.xml

我做了以下教程link here

我正在

  

引起:org.xml.sax.SAXParseException; lineNumber:10; columnNumber:18; cvc-complex-type.2.4.a:从元素'属性'开始发现无效内容。 ' {" http://xmlns.jcp.org/xml/ns/persistence":property}'是预期的。

指向我的presistence.xml,如下所示:

<?xml version="1.0" encoding="UTF-8"?>
<persistence version="2.1"     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">
 <persistence-unit name="loginTestPU" transaction-type="RESOURCE_LOCAL">
  <class>entities.User</class>
  <properties>   
    <property name="javax.persistence.jdbc.url" value="jdbc:mysql://localhost:3306/p?zeroDateTimeBehavior=convertToNull"/>
    <property name="javax.persistence.jdbc.driver" value="com.mysql.jdbc.Driver"/>
    <property name="javax.persistence.jdbc.user" value="User"/>
    <property name="javax.persistence.jdbc.password" value="p"/>
    <properties/>
    </persistence-unit>
    </persistence>

期望什么样的财产?

同样在视频中使用了Eclipse_JPA库,我安装了netbeans 8.1并且它有这个库,我使用了EclipseLink(JPA2.1)。这只是我的实现与视频之间的区别。

1 个答案:

答案 0 :(得分:0)

使用</properties>代替<properties/>

<properties/>只不过是<properties/> <properties/>但如果您想在<properties/> <properties/>之间添加一些您尝试做的事情,则无法使用<properties/>