首页 > 移动平台 > 详细

is not mapped [from错误

时间:2017-01-11 14:28:40      阅读:200      评论:0      收藏:0      [点我收藏+]

org.hibernate.hql.ast.QuerySyntaxException: CINEMAS is not mapped [from CINEMAS]

<class name="User" table="CINEMAS">      

  <id name="id" column="Id"  type="Java.lang.Integer">          

    <generator class="native"/>      

  </id>      

  <property name="username" column="username"  type="java.lang.String"/>      

  <property name="password" column="password"  type="java.lang.String"/>      

  <property name="sex" column="sex"  type="java.lang.String"/>

</class>

代码如下:

List<User> list=session.createQuery("from CINEMAS").list();

而出现这个错误的根本原因是hql语法里面是POJO对象而不是table.所以改成这样就可以了:

List<User> list=session.createQuery("from User").list();

 

is not mapped [from错误

原文:http://www.cnblogs.com/chuningning/p/6273288.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!