没有任何类或映射文件的eclipse链接

时间:2015-01-11 08:37:50

标签: hibernate jpa eclipselink

正如您在本教程http://www.vogella.com/tutorials/JavaPersistenceAPI/article.html中所见,当您声明像Person这样的实体时,您必须在persistence.xml中添加它<class>de.vogella.jpa.eclipselink.model.Person</class>,或者您可以定义一个映射文件并将您的类放在那里,但是当你使用hibernate时,你可以在实体声明后看到http://www.alexecollins.com/tutorial-hibernate-jpa-part-1/,你不需要在persistence.xml中添加任何类作为类。或者我误解了。

我希望eclipe链接的功能与hibernate相同,意味着我应该使用eclipse链接,我不想声明类或使用任何映射文件,是否可能或者它没有?

感谢

1 个答案:

答案 0 :(得分:0)

您想忽略persistence.xml&amp;中的<class>注释。你想让你的eclipse自动检测带注释的类文件吗?然后尝试以下方法,

右键单击项目,单击属性,选择JPA,在持久性类管理中选择自动发现带注释的类

enter image description here

推荐链接:Do I need <class> elements in persistence.xml?