Can not find the declaration of element 'persistence'

后端 未结 4 1786
有刺的猬
有刺的猬 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:06

    I have faced similar problem (Cannot find the declaration of element 'entity-mappings') in the past when I had persistence.xml with JPA version 2.0 & orm.xml file with version 2.1. I think the error reported above are similar.

    Working samples for JPA 2. Read the sample below carefully and note their version. Ensure they are of same versions as in the samples. You may use JPA 2.1 and approprite schema reference as well.

    persistence.xml

    
        
            jdbc/sanjusDataSourceXA
            META-INF/orm.xml
            org.sanjus.pa.ejb.entity.UserEntity
        
    
    

    orm.xml

    
        
            SELECT a.userJson FROM UserEntity a WHERE a.userId = :userId
        
    
    

提交回复
热议问题