作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
JPA 2.0 的实体映射文件的正确起始标记是
<entity-mappings version="1.0" xmlns="http://java.sun.com/xml/ns/persistence/orm"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/persistence/orm
http://java.sun.com/xml/ns/persistence/orm_1_0.xsd">
JPA 2.1 需要进行哪些更正?
我试过了
<entity-mappings version="2.1" xmlns="http://www.eclipse.org/eclipselink/xsds/persistence/orm">
但这给出了错误:
No grammar constraints (DTD or XML Schema) referenced in the document.
最佳答案
根据 JPA 2.1 规范所说的可能 ;-) 或 docs of a JPA 2.1 implementation that tells you
将 java.sun.com 更改为 xmlns.jcp.org
将 orm_1_0 更改为 orm_2_1
将 version="1.0"更改为 version="2.1"
关于java - 如何在 JPA 2.1 中指定实体映射?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17105445/
我是一名优秀的程序员,十分优秀!