Spring 5.0 +Jpa,使用@Query实现 自定义查询报错:
java.lang.IllegalArgumentException: org.hibernate.hql.internal.ast.QuerySyntaxException: student is not mapped [select id,name,createtime,sex,age from student s]
原因是查询语句中 from 后面写的是实体类名,而不是表名。
2022-09-27 20:43:58
Spring 5.0 +Jpa,使用@Query实现 自定义查询报错:
java.lang.IllegalArgumentException: org.hibernate.hql.internal.ast.QuerySyntaxException: student is not mapped [select id,name,createtime,sex,age from student s]
原因是查询语句中 from 后面写的是实体类名,而不是表名。