标签:注解 record 名称 from 模糊查询 ati code dao层 select
dao层我尝试使用JPA自带的Like,但是不知道怎么进行分页,所以使用了@Query注解来完成
dao语句
@Query(value = "SELECT * from red_city_list where ztmc like %?1%",nativeQuery = true)
Page<CityRedListRecord> findByContentLike(String content, PageRequest pageRequest);
其中red_city_list表示查询的数据库名称,ztmc表示要查询的字段,CityRedListRecord表示实体类,content模糊查询字段
//1.分页 PageRequest pageRequest = PageRequest.of(cityRedListForm.getPageIndex(), cityRedListForm.getPageSize()); //2.模糊查询查询并分页 Page<CityRedListRecord> byZtmcLikePage = cityRedListRecordRepository.findByContentLike(cityRedListForm.getContent(), pageRequest);
byZtmcLikePage即为查询结果,可调用getContent()获取
标签:注解 record 名称 from 模糊查询 ati code dao层 select
原文地址:https://www.cnblogs.com/lxxcn/p/11834022.html