使用 Hibernate 进行 Spring 3 MVC 验证;错误:org.hibernate.MappingException:未知实体

发布于 2024-10-26 21:52:18 字数 426 浏览 1 评论 0原文

我正在学习 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

奈何桥上唱咆哮 2024-11-02 21:52:18

老问题,但为了谷歌的缘故,我想给出一个建议:检查你的 persistence.xml 文件以确保有相关类的映射。在这种情况下,应该有一个条目如下:

<persistence ...>
   <persistence-unit name="..." ...>
      <provider>...</provider>
      <class>com.sutteringjohnsmith.model.Friend</class>
   </persistence-unit>
</persistence>

希望对某人有帮助......

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:

<persistence ...>
   <persistence-unit name="..." ...>
      <provider>...</provider>
      <class>com.sutteringjohnsmith.model.Friend</class>
   </persistence-unit>
</persistence>

Hope that helps someone...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文