is not mapped [from错误

Posted 褚牛牛

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了is not mapped [from错误相关的知识,希望对你有一定的参考价值。

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错误的主要内容,如果未能解决你的问题,请参考以下文章

is not mapped 错误改正

错误笔记之Hibernate出现xxx is not mapped[from Xxx where ...]的原因排查

hibernate xxx is not mapped 错误原因及解决方法

Struts2的There is not Action mapped for namespace [/] 错误

Readable.from is not a function node 8.12.0 生产中的错误

关于小程序使用map组件,标记markers时报错误(ret is not defined)