ssm框架中解决 sqlserver数据库的分页问题(用的是mybatis插件)

Posted songyinan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ssm框架中解决 sqlserver数据库的分页问题(用的是mybatis插件)相关的知识,希望对你有一定的参考价值。

一般情况下,大部分都是用的mysql数据库,应公司需要现在需要修改成sqlserver,所以这里记录一下。

一:首先配置一下maven,这里选用的是 5.0.0,因为低版本是测试了一下,不支持 sqlserverf分页

<!--mybatis插件分页-->
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper</artifactId>
<version>5.0.0</version>
</dependency>

二:配置mytatis.xm
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" "http://mybatis.org/dtd/mybatis-3-config.dtd">
<!-- 上面是mybatis的配置文件的头-->

<configuration>
<!-- 打印日志配置(可选) -->
<settings>
<!-- 打印查询语句 -->
<setting name="logImpl" value="STDOUT_LOGGING"/>
</settings>

<plugins>
     <!--5.0版本pagehelper-->
<plugin interceptor="com.github.pagehelper.PageInterceptor">
<property name="helperDialect" value="sqlserver"/>
</plugin>
</plugins>

</configuration>

三:在方法中使用
public PageInfo<User> getUserList(int page, int limit) {
//开启分页
PageHelper.startPage(page,limit);
//查询数据
List<User> userList = userMapper.getAllUsers();
//把查询的数据分页
PageInfo<User> pageInfo= new PageInfo<>(userList);
return pageInfo;
}
 

 

以上是关于ssm框架中解决 sqlserver数据库的分页问题(用的是mybatis插件)的主要内容,如果未能解决你的问题,请参考以下文章

SSM框架+layui前端框架整合

SSM框架使用分页插件显示信息

mysql——分页技术实现(基于layui框架)

高性能秒杀系统实现,添加部分功能---分页展示订单

SSM动态展示分页

Sqlserver 2008中的分页