Python 官方文档:入门教程 => 点击学习
目录springDataJpa@Query注解报错SpringDataJpa@query注解使用原生代码报错SpringDataJpa @Query注解报错 public int
public interface TimeContentRepository extends JpaRepository<TimeContent,String> {
@Query(value = "select id,user_id as userId,create_time as createTime " +
"from time_content where create_time = ?1 and user_id = ?2")
List<TimeContent> findOnDay(String create_time,String userId);
}
Caused by: org.hibernate.hql.internal.ast.QuerySyntaxException: time_content is not mapped
注解中写的是HQL,所以查询的是对象,而不是表名
改为
public interface TimeContentRepository extends JpaRepository<TimeContent,String> {
@Query(value = "select id,user_id as userId,create_time as createTime " +
"from TimeContent where create_time = ?1 and user_id = ?2")
List<TimeContent> findOnDay(String create_time,String userId);
}
Caused by: org.hibernate.QueryException: No data type for node: org.hibernate.hql.internal.ast.tree.IdentNode +-[IDENT] IdentNode: 'user_id' {originalText=user_id}
同样的问题,查询的字段也是对象的成员,不是表的字段
之前用过@query 原生代码的查询方式,正常加注解就可以使用,大概形式为:
如上形式,完美解决本地查询问题。
但是,这是和往常一样使用@query 原生代码查询,程序报如下错误:
org.springframework.data.jpa.repository.query.InvalidJpaQueryMethodException: Cannot use native queries...
经过问题分析与网上查找原因发现问题:
@query 原生查询不能和分页查询的pageable一起使用。为解决这一问题,还想使用pageable分页功能。修改原生代码如下形式即可解决问题:
@Query(value="from S_TC70 aac001=?1 "
,countQuery="select count(1) from S_TC70 aac001=?1 ")
Page<S_TC70> getUseOriginS_TC70(String aac001,Pageable pageable);
顺利解决问题!以上为个人经验,希望能给大家一个参考,也希望大家多多支持编程网。
--结束END--
本文标题: SpringDataJpa的@Query注解报错的解决
本文链接: https://lsjlt.com/news/159424.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0