HibernateQueryException: test is not mapped

具体错误信息

org.springframework.orm.hibernate3.HibernateQueryException: test is not 
mapped [select count(id) as total  from test where delFlag = 0]; nested 
exception is org.hibernate.hql.ast.QuerySyntaxException: test is not 
mapped [select count(id) as total  from test where delFlag = 0]

后台代码

hqlForCount.append("select count(id) as total  from test");
改为
hqlForCount.append("select count(id) as total  from Test");

由于用的Hibernate次数不多,也由于自己粗心造成的,只需要把 from 表名 改为from 实体的名字,我这里实体是Test,解决此问题。在此记录下平时遇到的错误

你可能感兴趣的:(HibernateQueryException: test is not mapped)