JPA Hibernate
希尤
某北方不知名985袋鼠一枚
展开
-
JPA多属性排序以及JPAwhere多条件动态查询
PageRequest pageable = PageRequest.of(page, limit,new Sort(Direction.DESC,"XXX").and(new Sort(Direction.DESC,"XXX")));原创 2019-06-27 14:35:59 · 2735 阅读 · 0 评论 -
JPA使用Specification动态where条件查询
1. 想要的效果SQL select * from XXX where column_1 ='字段1的值' and column_2 ='字段2的值' and (column_3= '字段3的值' or column_3 ='字段3的第二个值') and LOCATE('字段4的值', column_4)>0 2.Specification 查询 ...转载 2019-09-18 10:22:28 · 4214 阅读 · 0 评论