programing tip

persistence.xml에서 JPA 2.1을 지정하는 방법은 무엇입니까?

itbloger 2020. 12. 12. 10:13
반응형

persistence.xml에서 JPA 2.1을 지정하는 방법은 무엇입니까?


인터넷에서 빠른 검색은 세 가지 계시 또는 네 사람이 지정되어 어떻게 변형 xmlnsxsi:schemaLocation에서 persistence.xml.

JPA 버전 2.1을 지정하는 '올바른'방식은 무엇입니까?

나는 사용하고있다

<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 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">
    ...
</persistence>

참고 URL : https://stackoverflow.com/questions/21142168/how-to-specify-jpa-2-1-in-persistence-xml

반응형