码迷,mamicode.com
首页 > 移动开发 > 详细

Hibernate 中出现 users is not mapped 问题 (转)

时间:2017-01-07 11:47:18      阅读:251      评论:0      收藏:0      [点我收藏+]

标签:ber   映射   资料   hql   style   检查   简单   class   问题:   

  今天晚上自己试着用Hibernate去搭建一个Web工程,然后去实现一个简单的登录。
         通过Hibernate 做查询操作的时候总是报出这样的错: 
                   users is not mapped.

          于是乎去检查了下映射,发现没问题呀,反复验证结果还是一样报错。
           User.hbm.xml:
                       <class name="com.lian.bean.User" table="users">
          hibernate.cfg.xml:
                       <mapping resource="com/lian/bean/User.hbm.xml" />
          在网上找了很多,但还是不给力,大家都没提些有建设性的解决方案,基本上都是说配置有问题。
          不过自己感觉是这个出问题:
                    String sql = "select u.password from users u where u.username=‘" +user.getUsername()+ "‘";
           经过多番纠结和耐心查找资料,发现:
             原来 HQL语句中表名应该是ORM映射的类名,所以应该改成:
                   String sql = "select u.password from User u where u.username=‘" +user.getUsername()+ "‘";

            哈哈哈,在此给所有在初学Hibernate的过程中遇到类似问题的people!!!

Hibernate 中出现 users is not mapped 问题 (转)

标签:ber   映射   资料   hql   style   检查   简单   class   问题:   

原文地址:http://www.cnblogs.com/wendu/p/6258848.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!