web-dev-qa-db-ja.com

persistence.xmlでJPA 2.1を指定する方法は?

ネット上で簡単に検索すると、人々がxmlnsxsi:schemaLocation in 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">
57
kmansoor

公式ドキュメント によると、それは(あなたのような)でなければなりません:

<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>
102
Andrei I