JPA 无法加载独立JAR包中实体映射文件 unkonwn entity
1.
可以把你包含@Entity的类的jar申明在元素persistence-unit下,如增加:<jar-file>***.jar</jar-file>。
2.可以把你包含@Entity的类的class申明在元素persistence-unit下,增加:<class>***.***.EntityClass</class>
参考
http://docs.jboss.org/hibernate/entitymanager/3.5/reference/en/html/configuration.html#d0e215
本文提供了解决使用JPA加载位于独立JAR包内的实体映射文件未知问题的方法,包括将包含@Entity的类的jar文件或class声明在persistence-unit元素下。
37

被折叠的 条评论
为什么被折叠?



