码迷,mamicode.com
首页 > 其他好文 > 详细

Mybatis分页插件测试项目

时间:2017-04-12 22:04:28      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:springmvc+mybatis   dubbo+zookeeper   restful redis分布式缓存   bootstrap html5   kafka   

该项目是一个针对分页插件进行测试的项目,可以对分页插件进行修改,通过测试来查看结果。

为了和新版本保持同步,使用了maven版本的分页插件

使用的maven依赖配置:

<dependency>
  <groupId>com.github.pagehelper</groupId>
  <artifactId>pagehelper</artifactId>
  <version>4.0.0</version></dependency><dependency>
  <groupId>com.github.jsqlparser</groupId>
  <artifactId>jsqlparser</artifactId>
  <version>0.9.1</version></dependency>

如果您需要修改插件来进行测试,请将分页插件的三个代码文件放到本项目中,然后修改插件的配置信息即可

修改mybatis-config.xmlmybatis-config-rowbounds.xml

<plugins>
  <plugin interceptor="com.github.pagehelper.PageHelper">
    <property name="dialect" value="hsqldb"/>
  </plugin></plugins>

com.github.pagehelper.PageHelper改为您导入的PageHelper文件。

由于测试类隐藏的比较深,这里直接附上地址:

项目更新为Web

由于多数人需要在EL中使用分页数据,所以将此项目改成了Web项目。

下载该项目后,在目录内执行下面代码:

mvn jetty:run

然后就可以打开浏览器:

http://localhost:8080/

效果如下(这是一个简单的JSP):

技术分享

源码来源:minglisoft.cn/technology

Mybatis分页插件测试项目

标签:springmvc+mybatis   dubbo+zookeeper   restful redis分布式缓存   bootstrap html5   kafka   

原文地址:http://12819045.blog.51cto.com/12809045/1915295

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!