Can not find the declaration of element 'persistence'

后端 未结 4 1785
有刺的猬
有刺的猬 2020-12-09 17:51

Have put the persistence.xml in the classpath of the project in eclipse because before the error was that the file was not found. Now gives this error:

<
4条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-09 18:22

    The problem is that you mix JPA 2.0 and JPA 2.1 notation.

    Either this

    
    

    for JPA 2.1 or this

    
    

    for JPA 2 but not a mix thereof.

    See http://www.oracle.com/webfolder/technetwork/jsc/xml/ns/persistence/index.html for details.

提交回复
热议问题