JPA-@Query注解实现连表和分页的动态查询
原文链接:https://blog.csdn.net/wolf2s/article/details/122003479
spring data jpa 动态查询 这里我们使用@Query注解实现
如果利用@Query就行分页主要用的属性有
- nativeQuery
- value
- countQuery
@Query(nativeQuery = true
,value = "你的sql"
, countQuery = "你的sql ")
Page<实体类> queryUser(@Param("criteria") QueryCriteria criteria, @Param("pageable") Pageable pageable);
- 1
- 2
- 3
- 4
这里需要注意 nativeQuery countQuery 中的sql条件需要一直
看下简单的例子
@Query(nativeQuery = true
,value = "select u.id,user.name,g.goodsName from user u left join goods g on g.user_id = u.id where g.name=:#{#criteria.goodsName}"
, countQuery = "select count(u.id) from user u left join goods g on g.user_id = u.id where g.name=:#{#criteria.goodsName}")
Page<实体类> queryUser(@Param("criteria") QueryCriteria criteria, @Param("pageable") Pageable pageable);
- 1
- 2
- 3
- 4
如果你需要动态查询条件使用sql的 if 函数 if(condition, value_if_true, value_if_false)
例如: 可以像下面这么写条件
where 1=1 and if(:#{#criteria.name !='',g.name=:#{#criteria.goodsName},1=1)
- 1
如果在程序中处理条件查询参数为空可以默认赋值为1 ,也可以这样实现多条件查询 SQL比较纯洁一些
where 1=1 and ( g.name= :#{#criteria.goodsName} or '1'= :#{#criteria.goodsName )