本文主要是介绍Exception in thread “main“ org.hibernate.hql.internal.ast.QuerySyntaxException: Admins is not mapped,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Exception in thread "main" org.hibernate.hql.internal.ast.QuerySyntaxException: Admins is not mapped [from Admins where adminname=:name and adminpwd=:pwd]等错误常见问题
1 Hql错误,
HQL是面向对象的查询语言
a、from 后接 类名,不是数据库表名,where 是类属性名,不是数据库字段名 注意区分大小写
b、使用注解的注意把对应类注解为实体,
C、hibernat.hbm.xml 注意是否加载了对应包扫描或者xml配置
记录一下 错误!希望有所帮助!
这篇关于Exception in thread “main“ org.hibernate.hql.internal.ast.QuerySyntaxException: Admins is not mapped的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!