标签: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.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
由于多数人需要在EL中使用分页数据,所以将此项目改成了Web项目。
下载该项目后,在目录内执行下面代码:
mvn jetty:run
然后就可以打开浏览器:
http://localhost:8080/
效果如下(这是一个简单的JSP):
源码来源:minglisoft.cn/technology
标签:springmvc+mybatis dubbo+zookeeper restful redis分布式缓存 bootstrap html5 kafka
原文地址:http://12819045.blog.51cto.com/12809045/1915295