如何在持久性.xml中指定 JPA 2.1?

2022-08-31 16:23:25

在网络上快速搜索一下,就会发现三到四种变体,人们是如何在 中指定和的。xmlnsxsi:schemaLocationpersistence.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">

答案 1

根据官方文件,它必须是(像你的一样):

<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>

答案 2

推荐