当前位置: 代码迷 >> 综合 >> spring hibernate jpa SQLGrammarException:could not extract ResultSet
  详细解决方案

spring hibernate jpa SQLGrammarException:could not extract ResultSet

热度:59   发布时间:2023-12-23 08:02:36.0

今天写demo的时候与数据库通过比较原始的springjpa方法连接的时候陷入大

引用的是org.springframework.data.jpa.repository.Query;
 
@Query("select u from JPALogin u where u.account=?1 and u.password=?2")语句也没问题,表映射是
 
@Id
private int userId;private String account;private String password;
而数据库中3个字段和他们一模一样,但是就是在查询的时候报错spring hibernate jpa SQLGrammarException: could not extract ResultSet。
最后发现问题出在userId,spring无论你如何映射,他返回的都是小写,也就是他返回的是userid,无法装入userId。最后将userId都改为userid就ok了
  相关解决方案