如何在persistence.xml中指定JPA 2.1?

前端之家收集整理的这篇文章主要介绍了如何在persistence.xml中指定JPA 2.1?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在网上快速搜索显示3或4个变体如何在persistence.xml中指定xmlns和xsi:schemaLocation。

指定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">
根据 official documentation它必须(像你的):
<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>
原文链接:https://www.f2er.com/xml/293807.html

猜你在找的XML相关文章