MyBatis-PageHelper 是一個 MyBatis 插件,用于實現分頁功能。要在 MyBatis 中使用 PageHelper 進行分頁查詢,請按照以下步驟操作:
首先,需要在項目的 pom.xml 文件中添加 MyBatis-PageHelper 的依賴:
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper</artifactId>
<version>5.2.0</version>
</dependency>
在 MyBatis 的配置文件(通常是 mybatis-config.xml)中,添加 PageHelper 的配置:
...
<plugins>
<plugin interceptor="com.github.pagehelper.PageInterceptor">
<property name="helperDialect" value="mysql"/>
<property name="reasonable" value="true"/>
<property name="supportMethodsArguments" value="true"/>
<property name="params" value="count=countSql"/>
</plugin>
</plugins>
...
</configuration>
其中,helperDialect
屬性用于指定數據庫方言,根據實際情況進行設置。
在對應的 Mapper 接口中,編寫分頁查詢的方法。例如,假設有一個 UserMapper 接口,可以編寫如下分頁查詢方法:
import com.github.pagehelper.Page;
import com.github.pagehelper.PageInfo;
public interface UserMapper {
PageInfo<User> selectUsersByPage(int pageNum, int pageSize);
}
在對應的 Mapper XML 文件中,編寫分頁查詢的 SQL 語句。例如,對于上面的 UserMapper 接口,可以編寫如下分頁查詢 SQL 語句:
SELECT * FROM user
LIMIT #{pageNum}, #{pageSize}
</select>
在 Service 層或 Controller 層中,調用 Mapper 接口的分頁查詢方法,傳入分頁參數。例如:
@Autowired
private UserMapper userMapper;
public PageInfo<User> getUsersByPage(int pageNum, int pageSize) {
return userMapper.selectUsersByPage(pageNum, pageSize);
}
這樣,就可以實現在 MyBatis 中使用 PageHelper 進行分頁查詢了。注意,分頁參數的傳遞和處理可能因項目而異,需要根據實際情況進行調整。