亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

如何在Spring Boot中使用MyBatis的分頁功能

小樊
82
2024-08-12 21:27:42
欄目: 編程語言

要在Spring Boot中使用MyBatis的分頁功能,可以按照以下步驟進行操作:

  1. 在pom.xml文件中添加MyBatis和MyBatis分頁插件的依賴:
<dependency>
    <groupId>org.mybatis.spring.boot</groupId>
    <artifactId>mybatis-spring-boot-starter</artifactId>
    <version>2.1.4</version>
</dependency>
<dependency>
    <groupId>com.github.pagehelper</groupId>
    <artifactId>pagehelper</artifactId>
    <version>5.2.1</version>
</dependency>
  1. 在application.properties文件中配置MyBatis和分頁插件的相關屬性:
mybatis.mapper-locations=classpath:mapper/*.xml
pagehelper.helperDialect=mysql
pagehelper.reasonable=true
pagehelper.supportMethodsArguments=true
  1. 在MyBatis的Mapper接口中定義查詢方法,并在方法參數中添加PageHelper的相關參數:
import com.github.pagehelper.Page;
import org.apache.ibatis.annotations.Mapper;
import java.util.List;

@Mapper
public interface UserMapper {
    List<User> selectAll(Page<User> page);
}
  1. 在Service層中調用Mapper接口的方法,傳入PageHelper的參數:
import com.github.pagehelper.Page;
import com.github.pagehelper.PageHelper;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

@Service
public class UserService {
    
    @Autowired
    private UserMapper userMapper;
    
    public List<User> getAllUsers(int pageNum, int pageSize) {
        Page<User> page = PageHelper.startPage(pageNum, pageSize);
        return userMapper.selectAll(page);
    }
}
  1. 在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;
import java.util.List;

@RestController
public class UserController {
    
    @Autowired
    private UserService userService;
    
    @GetMapping("/users")
    public List<User> getUsers(@RequestParam int pageNum, @RequestParam int pageSize) {
        return userService.getAllUsers(pageNum, pageSize);
    }
}

通過以上步驟,就可以在Spring Boot中使用MyBatis的分頁功能了。在Controller層中傳入pageNum和pageSize參數,調用Service層的方法查詢相應頁的數據,并返回給前端頁面展示。

0
深圳市| 平潭县| 哈巴河县| 宣威市| 盐城市| 凤城市| 恩平市| 遂平县| 和龙市| 祁连县| 扶沟县| 巴里| 和林格尔县| 茌平县| 进贤县| 张家港市| 武定县| 大安市| 红安县| 宝兴县| 静海县| 灯塔市| 福清市| 泰宁县| 吉水县| 灌南县| 龙海市| 曲阜市| 遂宁市| 钟山县| 新营市| 东城区| 巩留县| 子长县| 郑州市| 芮城县| 富蕴县| 象山县| 长武县| 恩平市| 阿克|