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

溫馨提示×

springboot怎么整合mybatisplus分頁

小億
83
2024-08-11 12:54:38
欄目: 編程語言

Spring Boot整合MyBatis-Plus實現分頁功能的步驟如下:

  1. 首先,在pom.xml文件中添加MyBatis-Plus和MyBatis-Plus的分頁插件的依賴:
<dependency>
    <groupId>com.baomidou</groupId>
    <artifactId>mybatis-plus-boot-starter</artifactId>
    <version>${mybatis-plus-version}</version>
</dependency>
  1. 在application.properties文件中配置MyBatis-Plus的配置信息:
#MyBatis-Plus配置
mybatis-plus.mapper-locations=classpath*:/mapper/**/*.xml
mybatis-plus.type-aliases-package=com.example.domain
  1. 創建一個Mapper接口,使用MyBatis-Plus提供的BaseMapper接口,并在接口中定義分頁查詢方法:
public interface UserMapper extends BaseMapper<User> {
    IPage<User> selectUserPage(Page<User> page, @Param("name") String name);
}
  1. 在對應的Mapper.xml文件中編寫分頁查詢的SQL語句:
<select id="selectUserPage" resultType="com.example.domain.User">
    SELECT *
    FROM user
    WHERE name = #{name}
</select>
  1. 在Service層中調用Mapper接口中定義的分頁查詢方法:
@Service
public class UserService {
    
    @Autowired
    private UserMapper userMapper;
    
    public IPage<User> getUserPage(Page<User> page, String name) {
        return userMapper.selectUserPage(page, name);
    }
}
  1. 在Controller層中調用Service層中定義的方法,獲取分頁數據:
@RestController
public class UserController {
    
    @Autowired
    private UserService userService;
    
    @GetMapping("/users")
    public IPage<User> getUsers(@RequestParam(defaultValue = "1") Integer pageNum, @RequestParam(defaultValue = "10") Integer pageSize, @RequestParam String name) {
        Page<User> page = new Page<>(pageNum, pageSize);
        return userService.getUserPage(page, name);
    }
}

通過以上步驟,就可以在Spring Boot項目中實現MyBatis-Plus的分頁功能。

0
博湖县| 富阳市| 庆阳市| 甘谷县| 虞城县| 东城区| 台前县| 贡嘎县| 阿尔山市| 西平县| 竹北市| 南漳县| 黄龙县| 天津市| 新巴尔虎左旗| 察雅县| 无极县| 宁阳县| 汝城县| 郴州市| 清远市| 长沙县| 龙井市| 衡东县| 洮南市| 松桃| 安宁市| 云安县| 漳平市| 乐东| 开江县| 双辽市| 台南县| 内黄县| 南投县| 内江市| 林西县| 旺苍县| 玛纳斯县| 云霄县| 剑河县|