Exception in thread "main" org.hibernate.hql.internal.ast.QuerySyntaxException: student is not mapped [from student]
研究了一下发现,原来是HQL查询是基于持久化类查询,而不是基于数据库,我的数据库表是student,而类是Student,所以就出错了,正确应该是from Student
时间: 2024-10-08 00:51:40
Exception in thread "main" org.hibernate.hql.internal.ast.QuerySyntaxException: student is not mapped [from student]
研究了一下发现,原来是HQL查询是基于持久化类查询,而不是基于数据库,我的数据库表是student,而类是Student,所以就出错了,正确应该是from Student