温馨提示×

如何在JPA中实现MySQL的分页查询

小樊
84
2024-08-19 03:01:36
栏目: 云计算

在JPA中实现MySQL的分页查询可以通过使用Spring Data JPA提供的Pageable接口来实现。下面是一个简单的示例代码:

首先,在Repository接口中定义一个方法,使用Pageable作为参数来实现分页查询:

import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import org.springframework.data.jpa.repository.JpaRepository;

public interface UserRepository extends JpaRepository<User, Long> {
    Page<User> findAll(Pageable pageable);
}

然后在Service层中调用Repository接口的方法来进行分页查询:

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 UserService {

    @Autowired
    private UserRepository userRepository;

    public Page<User> findAllUsers(int pageNo, int pageSize) {
        Pageable pageable = PageRequest.of(pageNo, pageSize);
        return userRepository.findAll(pageable);
    }
}

最后,在Controller层中接收请求参数,并调用Service层方法来实现分页查询:

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class UserController {

    @Autowired
    private UserService userService;

    @GetMapping("/users")
    public Page<User> getUsers(@RequestParam int pageNo, @RequestParam int pageSize) {
        return userService.findAllUsers(pageNo, pageSize);
    }
}

这样就可以在JPA中实现MySQL的分页查询了。当调用/users接口时,可以传入pageNopageSize参数来获取指定页数的数据。

0