添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
本文详细介绍了Spring Data JPA的各种查询方法,包括命名查询、分页查询、排序查询、条件化查询(Specification)以及原生SQL查询。通过示例展示了如何创建Specification对象、使用Criteria查询以及处理复杂的and/or查询条件。此外,还提到了在Oracle数据库中按汉语拼音排序以及只查询部分字段的原生SQL查询方法。 摘要由CSDN通过智能技术生成

可参考 Spring Data -Specification用法和常用查询方法(in,join,equal等)

1.命名查询 在StudentRepository接口中 定义命名查询,不需要实现类 参考 使用 Spring Data JPA 简化 JPA 开发

import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.jpa.repository.JpaSpecificationExecutor;
import org.springframework.stereotype.Repository;
@Repository
public interface FruitRepository extends JpaRepository<Fruit, Long>, JpaSpecificationExecutor<Fruit> {
    Fruit findByName(String name);

Service层

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service
public class FruitServiceImpl implements FruitService {
    @Autowired
    private FruitRepository fruitRepository;
    @Override
    public Fruit findByName(String name) {
        return fruitRepository.findByName(name);

2.分页查询  pageNumber是从0开始, pageNumber=0,pageSize=3 就是获取前3条 参考创建分页Pageable变量

创建Pageable对象,再查询

import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.PageRequest;
import org.springframework.data.domain.Pageable;
import org.springframework.stereotype.Service;
@Service
public class FruitServiceImpl implements FruitService {
    @Autowired
    private FruitRepository fruitRepository;
    // 分页获取
    @Override
    public List<Fruit> findAllPageable(Integer pageNumber, Integer pageSize) {
        Pageable pageable = PageRequest.of(pageNumber, pageSize); // 创建分页对象
        Page<Fruit> fruits = fruitRepository.findAll(pageable);
        Long total = fruits.getTotalElements(); // 符合条件的总记录条数
        List<Fruit> fruitList = fruits.getContent();// 这一页的所有记录
        return fruitList;

3.先排序 再分页 查询 : 创建Sort对象,再用Sort对象创建 Pageable对象,再查询 参考Spring Data JPA 多属性排序

  •  根据一个字段排序   
  •  根据多个字段排序,排序方式一样 
  •  根据多个字段排序,排序方式不一样
  • import java.util.ArrayList;
    import java.util.List;
    import org.springframework.beans.factory.annotation.Autowired;
    import org.springframework.data.domain.Page;
    import org.springframework.data.domain.PageRequest;
    import org.springframework.data.domain.Pageable;
    import org.springframework.data.domain.Sort;
    import org.springframework.data.domain.Sort.Direction;
    import org.springframework.data.domain.Sort.Order;
    import org.springframework.stereotype.Service;
    @Service
    public class FruitServiceImpl implements FruitService {
        @Autowired
        private FruitRepository fruitRepository;
        @Override
        public List<Fruit> findAllPageableBySort(Integer pageNumber, Integer pageSize) {
            Sort sort = Sort.by(Direction.DESC, "name");// 排序方式  根据name降序排列
            Pageable pageable = PageRequest.of(pageNumber, pageSize, sort);// 分页对象
            Page<Fruit> fruits = fruitRepository.findAll(pageable);// 查询
            Long total = fruits.getTotalElements(); // 符合条件的总记录条数
            List<Fruit> fruitList = fruits.getContent();// 这一页的所有记录
            return fruitList;
        // 根据多个条件先排序 再分页获取
        @Override
        public List<Fruit> findAllPageableByMultiSort(Integer pageNumber, Integer pageSize) {
            // 根据多个条件排序 先根据name降序排列,再根据color的升序排列
            List<Order> orders = new ArrayList<Sort.Order>();
            orders.add(new Order(Direction.DESC, "name"));
            orders.add(new Order(Direction.ASC, "color"));
            Sort sort = Sort.by(orders);
            Pageable pageable = PageRequest.of(pageNumber, pageSize, sort);// 分页对象