Mybatis分页插件测试项目
说明 转载自:http://git.oschina.net/free/Mybatis-Sample
该项目是一个针对分页插件进行测试的项目,可以对分页插件进行修改,通过测试来查看结果。
为了和新版本保持同步,使用了maven版本的分页插件
使用的maven依赖配置:
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper</artifactId>
<!-- 当前最新版本是3.6.2 -->
<version>3.3.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.github.jsqlparser</groupId>
<artifactId>jsqlparser</artifactId>
<version>0.9.1</version>
</dependency>
如果您需要修改插件来进行测试,请将分页插件的三个代码文件放到本项目中,然后修改插件的配置信息即可
修改mybatis-config.xml
和mybatis-config-rowbounds.xml
:
<plugins>
<plugin interceptor="com.github.pagehelper.PageHelper">
<property name="dialect" value="hsqldb"/>
</plugin>
</plugins>
将com.github.pagehelper.PageHelper
改为您导入的PageHelper
文件。
由于测试类隐藏的比较深,这里直接附上地址:
-
Web测试类:CountryServlet.java
-
配置文件:mybatis-config.xml
项目更新为Web
由于多数人需要在EL中使用分页数据,所以将此项目改成了Web项目。
下载该项目后,在目录内执行下面代码:
mvn jetty:run
然后就可以打开浏览器:
http://localhost:8080/
效果如下(这是一个简单的JSP):
输入页码18,页面大小10后查询:
分页插件地址
http://download.csdn.net/detail/erris/8878593
Mybatis相关内容
Mybatis项目:https://github.com/mybatis/mybatis-3
Mybatis文档及jar包:http://download.csdn.net/detail/erris/8878561