通用分页的类
package com.zking.util;
/**
* 分页工具类
*
*/
public class PageBean {
private int page = 1;// 页码
private int rows = 10;// 页大小
private int total = 0;// 总记录数
private boolean pagination = true;// 是否分页
public PageBean() {
super();
}
public int getPage() {
return page;
}
public void setPage(int page) {
this.page = page;
}
public int getRows() {
return rows;
}
public void setRows(int rows) {
this.rows = rows;
}
public int getTotal() {
return total;
}
public void setTotal(int total) {
this.total = total;
}
public void setTotal(String total) {
this.total = Integer.parseInt(total);
}
public boolean isPagination() {
return pagination;
}
public void setPagination(boolean pagination) {
this.pagination = pagination;
}
/**
* 获得起始记录的下标
*
* @return
*/
public int getStartIndex() {
return (this.page - 1) * this.rows;
}
@Override
public String toString() {
return "PageBean [page=" + page + ", rows=" + rows + ", total=" + total + ", pagination=" + pagination + "]";
}
}
判空方法
package com.zking.util;
public class StringUtils {
// 私有的构造方法,保护此类不能在外部实例化
private StringUtils() {
}
/**
* 如果字符串等于null或去空格后等于"",则返回true,否则返回false
*
* @param s
* @return
*/
public static boolean isBlank(String s) {
boolean b = false;
if (null == s || s.trim().equals("")) {
b = true;
}
return b;
}
/**
* 如果字符串不等于null或去空格后不等于"",则返回true,否则返回false
*
* @param s
* @return
*/
public static boolean isNotBlank(String s) {
return !isBlank(s);
}
}
在我们做好准备之后就可以开始编写需要用到的类了
1.定义好需要的属性
2.set get 方法
3.有参无参的构造方法
package com.entity;
public class Book {
private int bid;
private String bname;
private float price;
@Override
public String toString() {
return "Book [bid=" + bid + ", bname=" + bname + ", price=" + price + "]";
}
public int getBid() {
return bid;
}
public void setBid(int bid) {
this.bid = bid;
}
public String getBname() {
return bname;
}
public void setBname(String bname) {
this.bname = bname;
}
public float getPrice() {
return price;
}
public void setPrice(float price) {
this.price = price;
}
public Book(int bid, String bname, float price) {
super();
this.bid = bid;
this.bname = bname;
this.price = price;
}
public Book() {
super();
}
}
在我们弄好之后就进行通用分页方法的编写
package com.zking.util;
import java.lang.reflect.Field;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.List;
import com.entity.Book;
public class BaseDao {
//通用查询
/**
*
* @param sql 决定查询那张表的数据
* @param clz 查询出来的数据封装到哪里实体类中
* @param pageBean 决定是否分页
* @return
* @throws IllegalAccessException
* @throws InstantiationException
* @throws SQLException
*/
@SuppressWarnings("resource")
public List executeQuery(String sql,Class clz,PageBean pageBean) throws InstantiationException, IllegalAccessException, SQLException{
List list = new ArrayList<>();
Connection con = DBAccess.getConnection();
PreparedStatement ps = null;
ResultSet rs = null;
try {
if (pageBean != null && pageBean.isPagination()) {
//该分页了
String countSql = getCountsql(sql);
ps = con.prepareStatement(countSql);
rs = ps.executeQuery();
if(rs.next()) {
pageBean.setTotal(rs.getLong(1)+"");
}
String pageSql = getPageSql(sql,pageBean);
ps = con.prepareStatement(pageSql);
rs = ps.executeQuery();
} else {
ps = con.prepareStatement(sql);
rs = ps.executeQuery();
}
while (rs.next()) {
// list.add(new Book(rs.getInt("bid"),
// rs.getString("bname"),
// rs.getFloat("price")));
/*
* 1.创建了一个Book对象
* 2.从ResultSet结果集中获取值放入Book对象属性中
* 2.1 获取到book属性对象
* 2.2 给属性对象赋值
* 3.将已经有值的Book对象放入list集合中
* */
//1
T t = (T) clz.newInstance();
//2
Field[] fields = clz.getDeclaredFields();
for (Field field : fields) {
field.setAccessible(true);
field.set(t, rs.getObject(field.getName()));
}
list.add(t);
}
} finally {
//shift + alt + z
DBAccess.close(con,ps,rs);
}
return list;
}
/**
* 将原生sql拼接出符合条件的某一页的数据查询sql
* @param sql
* @param pageBean
* @return
*/
private String getPageSql(String sql, PageBean pageBean) {
return sql + " limit "+pageBean.getStartIndex()+ "," +pageBean.getRows();
}
/**
* 用原生sql拼接出查询符合条件的记录数
* @param sql
* @return
*/
private String getCountsql(String sql) {
// t为别名随便取
return "select count(1) from ("+sql+") t";
}
}
我们要重点记住以下两个方法
这是通用分页的核心
1
private String getCountsql(String sql) {
// t为别名随便取
return "select count(1) from ("+sql+") t";
}
这里的sql指的是你在dao方法里面的sql语句
这个方法主要是用于dao方法sql语句查询出你想要的记录总数
2.
private String getPageSql(String sql, PageBean pageBean) {
return sql + " limit "+pageBean.getStartIndex()+ "," +pageBean.getRows();
}
这一个sql语句方法主要是用来展现初你要展现数据的页数,这里默认是第一页,但是我们可以在dao方法进行设置
在我们编写好通用方法之后就可以在dao方法进行调用了
我们先创建好自己需要调用的dao类
然后继承这个通用方法继承方法之后我们就可以调用通用方法了,然后你会发现相比之前,代码减少了很多。
package com.dao;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.List;
import com.entity.Book;
import com.zking.util.BaseDao;
import com.zking.util.DBAccess;
import com.zking.util.PageBean;
import com.zking.util.StringUtils;
/**
* 操作数据库中的t_mvc_book表
* 1.加载驱动
* 2.建立链接
* 3.获取预定义处理对象
* 4.执行sql语句
* 5.处理结果集
* 6.关闭连接
* @author lqx
*
*/
public class BookDao extends BaseDao{
/**
*
* @param book 是从jsp传递过来的参数封装成对象的作为参数查询并执行sql
* @param pageBean 决定是否分页
* @return
* @throws SQLException
* @throws IllegalAccessException
* @throws InstantiationException
*/
public List list(Book book,PageBean pageBean) throws SQLException, InstantiationException, IllegalAccessException{
String sql = "select * from t_mvc_book where 1=1";
if(StringUtils.isNotBlank(book.getBname())) {
sql += " and bname like '%"+book.getBname()+"%'";
}
return super.executeQuery(sql, Book.class, pageBean);
}
public static void main(String[] args) {
BookDao bookDao = new BookDao();
try {
Book b = new Book();
PageBean pageBean = new PageBean();
//false代表不想分页 反之
// pageBean.setPagination(false);
//代表想从第几页开始查 默认第一页
// pageBean.setPage(2);
//代表想要查询的内容 如果去掉就是查看所有
// b.setBname("圣墟");
List list = bookDao.list(b, pageBean);
for (Book book : list) {
System.out.println(book);
}
} catch (SQLException e) {
e.printStackTrace();
} catch (InstantiationException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
}
}
}
1、将原有的查询向上抽取
2、让返回值变成泛型
3、使用回调函数处理resultset
4、利用反射处理回调函数
5、获取总记录数(页面展示,计算总页数)
6、拼接分页sql语句,获取对应的结果集