使用 Hibernate 进行 Spring 3 MVC 验证;错误:org.hibernate.MappingException:未知实体
我正在学习 Spring3 与 Hibernate 的验证。我有这个课程,但我正在设置以下错误
org.hibernate.MappingException: UnknownEntity: com.stutteringjohnsmith.model.Friend
中的示例
我正在做http://www.roseindia.net/tutorial/spring/spring3/web/spring-3 -mvc-and-hibernate3-example-part1.html
但我将文章更改为朋友!请帮帮我
I am just learning Spring3 Validation with Hibernate. I have this class but I am setting getting the following error
org.hibernate.MappingException: Unknown entity: com.stutteringjohnsmith.model.Friend
I am doing the sample from
http://www.roseindia.net/tutorial/spring/spring3/web/spring-3-mvc-and-hibernate3-example-part1.html
but I change the Article to Friend! Please help me out
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
老问题,但为了谷歌的缘故,我想给出一个建议:检查你的 persistence.xml 文件以确保有相关类的映射。在这种情况下,应该有一个条目如下:
希望对某人有帮助......
Old question, but for google's sake I wanted to give a suggestion: check your persistence.xml file to make sure there's a mapping for the class in question. In this case, there should be an entry as follows:
Hope that helps someone...