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

is not mapped [from错误

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

标签:lang   lib   list   base   nat   create   type   string   对象   

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错误

标签:lang   lib   list   base   nat   create   type   string   对象   

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

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