JSP的我的个人博客网站,界面很漂亮。有数据库文件,说配置文件说明,可以运行成功。-JSP' s my personal blog website, the interface is very pretty. There is a database file that the configuration file that can run successfully.
JSP的我的个人博客网站,界面很漂亮。有数据库文件,说配置文件说明,可以运行成功。 -JSP' s my personal blog website, the interface is very pretty. There is a database file that the configuration file that can run successfully.
数据分页,在开发中必不可少,由于数据量太大,不得不进行处理。但是对于分页,又有很多种方式,比如使用sql语句的limit,或者使用jquery的插件。但是底层的逻辑,都是需要的。
在这里贴出bean对象的代码,以及一个辅助类。我做的这个项目是一个个人博客,算是个人网站吧。
(只贴部分底层逻辑代码)
Page.java
package cn.edu.ldu.util;
public class Page {
private int everyPage; //每页显示的数量
pr