• J2EE基础:通用分页01


    目录

    一.关于分页的五个类

    1.PageBean.java分页工具类

    2. StringUtils.java这个类就是判断是否为空

    3.EncodingFiter.java这个类就是过滤器

    4.连接某个数据库的类  比如我现在连的是MySQL数据库

    5.DBAccess.java这个类就根DBHelper一样的 

    二.junit4

    1.dao方法

    三.反射通用后台查询方法 

    总结:junit 能够针对单个方法进行测试,相对于main方法而言,测试耦合性降低了 

    四.怎么去解决dao方法里面重复的代码块

    五.通用的分页后台查询方法 

    1.按S阶段的方式写了一个查询 

    2.BaseDao 

    3.CallBack

    4.通用分页


    一.关于分页的五个类

    1.PageBean.java分页工具类

    1. package com.jiangwenjuan.util;
    2. /**
    3. * 分页工具类
    4. * @author 蒋文娟
    5. *
    6. * @date 2022年6月21日 下午8:15:46
    7. */
    8. public class PageBean {
    9. private int page = 1;// 页码
    10. private int rows = 10;// 页大小
    11. private int total = 0;// 总记录数
    12. private boolean pagination = true;// 是否分页
    13. public PageBean() {
    14. super();
    15. }
    16. public int getPage() {
    17. return page;
    18. }
    19. public void setPage(int page) {
    20. this.page = page;
    21. }
    22. public int getRows() {
    23. return rows;
    24. }
    25. public void setRows(int rows) {
    26. this.rows = rows;
    27. }
    28. public int getTotal() {
    29. return total;
    30. }
    31. public void setTotal(int total) {
    32. this.total = total;
    33. }
    34. public void setTotal(String total) {
    35. this.total = Integer.parseInt(total);
    36. }
    37. public boolean isPagination() {
    38. return pagination;
    39. }
    40. public void setPagination(boolean pagination) {
    41. this.pagination = pagination;
    42. }
    43. /**
    44. * 获得起始记录的下标
    45. *
    46. * @return
    47. */
    48. public int getStartIndex() {
    49. return (this.page - 1) * this.rows;
    50. }
    51. @Override
    52. public String toString() {
    53. return "PageBean [page=" + page + ", rows=" + rows + ", total=" + total + ", pagination=" + pagination + "]";
    54. }
    55. }

    2. StringUtils.java这个类就是判断是否为空

    1. package com.jiangwenjuan.util;
    2. /**
    3. * 判空
    4. * @author 蒋文娟
    5. *
    6. * @date 2022年6月21日 下午8:15:19
    7. */
    8. public class StringUtils {
    9. // 私有的构造方法,保护此类不能在外部实例化
    10. private StringUtils() {
    11. }
    12. /**
    13. * 如果字符串等于null或去空格后等于"",则返回true,否则返回false
    14. *
    15. * @param s
    16. * @return
    17. */
    18. public static boolean isBlank(String s) {
    19. boolean b = false;
    20. if (null == s || s.trim().equals("")) {
    21. b = true;
    22. }
    23. return b;
    24. }
    25. /**
    26. * 如果字符串不等于null或去空格后不等于"",则返回true,否则返回false
    27. *
    28. * @param s
    29. * @return
    30. */
    31. public static boolean isNotBlank(String s) {
    32. return !isBlank(s);
    33. }
    34. }

    3.EncodingFiter.java这个类就是过滤器

    过滤器:就是把我们的字符编码集转成UTF-8,jsp默认的编码集是ISO-8859-1,这个就是我们编码集的作用

    1. package com.jiangwenjuan.util;
    2. import java.io.IOException;
    3. import java.util.Iterator;
    4. import java.util.Map;
    5. import java.util.Set;
    6. import javax.servlet.Filter;
    7. import javax.servlet.FilterChain;
    8. import javax.servlet.FilterConfig;
    9. import javax.servlet.ServletException;
    10. import javax.servlet.ServletRequest;
    11. import javax.servlet.ServletResponse;
    12. import javax.servlet.http.HttpServletRequest;
    13. import javax.servlet.http.HttpServletResponse;
    14. /**
    15. * 中文乱码处理
    16. * @author 蒋文娟
    17. *
    18. * @date 2022年6月21日 下午8:09:18
    19. */
    20. public class EncodingFiter implements Filter {
    21. private String encoding = "UTF-8";// 默认字符集
    22. public EncodingFiter() {
    23. super();
    24. }
    25. public void destroy() {
    26. }
    27. public void doFilter(ServletRequest request, ServletResponse response,
    28. FilterChain chain) throws IOException, ServletException {
    29. HttpServletRequest req = (HttpServletRequest) request;
    30. HttpServletResponse res = (HttpServletResponse) response;
    31. // 中文处理必须放到 chain.doFilter(request, response)方法前面
    32. res.setContentType("text/html;charset=" + this.encoding);
    33. if (req.getMethod().equalsIgnoreCase("post")) {
    34. req.setCharacterEncoding(this.encoding);
    35. } else {
    36. Map map = req.getParameterMap();// 保存所有参数名=参数值(数组)的Map集合
    37. Set set = map.keySet();// 取出所有参数名
    38. Iterator it = set.iterator();
    39. while (it.hasNext()) {
    40. String name = (String) it.next();
    41. String[] values = (String[]) map.get(name);// 取出参数值[注:参数值为一个数组]
    42. for (int i = 0; i < values.length; i++) {
    43. values[i] = new String(values[i].getBytes("ISO-8859-1"),
    44. this.encoding);
    45. }
    46. }
    47. }
    48. chain.doFilter(request, response);
    49. }
    50. public void init(FilterConfig filterConfig) throws ServletException {
    51. String s = filterConfig.getInitParameter("encoding");// 读取web.xml文件中配置的字符集
    52. if (null != s && !s.trim().equals("")) {
    53. this.encoding = s.trim();
    54. }
    55. }
    56. }

    4.连接某个数据库的类  比如我现在连的是MySQL数据库

    1. #oracle9i
    2. #driver=oracle.jdbc.driver.OracleDriver
    3. #url=jdbc:oracle:thin:@localhost:1521:orcl
    4. #user=scott
    5. #pwd=123
    6. #sql2005
    7. #driver=com.microsoft.sqlserver.jdbc.SQLServerDriver
    8. #url=jdbc:sqlserver://localhost:1433;DatabaseName=test1
    9. #user=sa
    10. #pwd=123
    11. #sql2000
    12. #driver=com.microsoft.jdbc.sqlserver.SQLServerDriver
    13. #url=jdbc:microsoft:sqlserver://localhost:1433;databaseName=unit6DB
    14. #user=sa
    15. #pwd=888888
    16. #mysql
    17. driver=com.mysql.jdbc.Driver
    18. url=jdbc:mysql://localhost:3306/student?useUnicode=true&characterEncoding=UTF-8&useSSL=false
    19. user=root
    20. pwd=123456

    5.DBAccess.java这个类就根DBHelper一样的 

    1. package com.jiangwenjuan.util;
    2. import java.io.InputStream;
    3. import java.sql.Connection;
    4. import java.sql.DriverManager;
    5. import java.sql.ResultSet;
    6. import java.sql.SQLException;
    7. import java.sql.Statement;
    8. import java.util.Properties;
    9. /**
    10. * DBHelper类
    11. * 提供了一组获得或关闭数据库对象的方法
    12. * @author 蒋文娟
    13. *
    14. * @date 2022年6月21日 下午8:07:57
    15. */
    16. public class DBAccess {
    17. private static String driver;
    18. private static String url;
    19. private static String user;
    20. private static String password;
    21. static {// 静态块执行一次,加载 驱动一次
    22. try {
    23. InputStream is = DBAccess.class
    24. .getResourceAsStream("config.properties");
    25. Properties properties = new Properties();
    26. properties.load(is);
    27. driver = properties.getProperty("driver");
    28. url = properties.getProperty("url");
    29. user = properties.getProperty("user");
    30. password = properties.getProperty("pwd");
    31. Class.forName(driver);
    32. } catch (Exception e) {
    33. e.printStackTrace();
    34. throw new RuntimeException(e);
    35. }
    36. }
    37. /**
    38. * 获得数据连接对象
    39. *
    40. * @return
    41. */
    42. public static Connection getConnection() {
    43. try {
    44. Connection conn = DriverManager.getConnection(url, user, password);
    45. return conn;
    46. } catch (SQLException e) {
    47. e.printStackTrace();
    48. throw new RuntimeException(e);
    49. }
    50. }
    51. public static void close(ResultSet rs) {
    52. if (null != rs) {
    53. try {
    54. rs.close();
    55. } catch (SQLException e) {
    56. e.printStackTrace();
    57. throw new RuntimeException(e);
    58. }
    59. }
    60. }
    61. public static void close(Statement stmt) {
    62. if (null != stmt) {
    63. try {
    64. stmt.close();
    65. } catch (SQLException e) {
    66. e.printStackTrace();
    67. throw new RuntimeException(e);
    68. }
    69. }
    70. }
    71. public static void close(Connection conn) {
    72. if (null != conn) {
    73. try {
    74. conn.close();
    75. } catch (SQLException e) {
    76. e.printStackTrace();
    77. throw new RuntimeException(e);
    78. }
    79. }
    80. }
    81. public static void close(Connection conn, Statement stmt, ResultSet rs) {
    82. close(rs);
    83. close(stmt);
    84. close(conn);
    85. }
    86. public static boolean isOracle() {
    87. return "oracle.jdbc.driver.OracleDriver".equals(driver);
    88. }
    89. public static boolean isSQLServer() {
    90. return "com.microsoft.sqlserver.jdbc.SQLServerDriver".equals(driver);
    91. }
    92. public static boolean isMysql() {
    93. return "com.mysql.cj.jdbc.Driver".equals(driver);
    94. }
    95. public static void main(String[] args) {
    96. Connection conn = DBAccess.getConnection();
    97. System.out.println(conn);
    98. DBAccess.close(conn);
    99. System.out.println("isOracle:" + isOracle());
    100. System.out.println("isSQLServer:" + isSQLServer());
    101. System.out.println("isMysql:" + isMysql());
    102. System.out.println("数据库连接(关闭)成功");
    103. }
    104. }

    第一步先要测试运行一下看能不能连接到mysql数据库,这样就说明没问题了

     

    二.junit4

    1.dao方法

    1. package com.jiangwenjuan.dao;
    2. import java.sql.Connection;
    3. import java.sql.PreparedStatement;
    4. import java.sql.ResultSet;
    5. import java.util.ArrayList;
    6. import java.util.List;
    7. import com.jiangwenjuan.entity.Book;
    8. import com.jiangwenjuan.util.DBAccess;
    9. import com.jiangwenjuan.util.PageBean;
    10. import com.jiangwenjuan.util.StringUtils;
    11. /**
    12. * 书籍数据库访问层dao
    13. * @author 蒋文娟
    14. *
    15. * @date 2022年6月21日 下午10:41:30
    16. */
    17. public class BookDao {
    18. public List<Book> list(Book book,PageBean pageBean) throws Exception{
    19. List<Book> list = new ArrayList<Book>();
    20. /*
    21. * 1.拿到数据库连接
    22. * 2.拿到 Preparestatement
    23. * 3.执行SQL语句
    24. */
    25. //创建连接
    26. Connection con = DBAccess.getConnection();
    27. //定义sql语句
    28. String sql = "select * from tb_book where 1=1 ";
    29. //假如按照书籍的名字查询
    30. String bname = book.getBname();
    31. //如果说这个书籍不为空,你就是想让书籍查询
    32. if(StringUtils.isNotBlank(bname)) {
    33. sql += " and bname like '%"+bname+"%'";
    34. }
    35. //假设按照id进行查询
    36. int bid = book.getBid();
    37. //判断是否为空
    38. if(bid != 0) {
    39. sql+=" and bid ="+bid;
    40. }
    41. //获取执行对象
    42. PreparedStatement ps = con.prepareStatement(sql);
    43. //获取结果集
    44. ResultSet rs = ps.executeQuery();
    45. //循环遍历结果集
    46. while(rs.next()) {
    47. list.add(new Book(rs.getInt("bid"), rs.getString("bname"), rs.getFloat("price")));
    48. }
    49. return list;
    50. }
    51. //增删改 junit
    52. public static void main(String[] args) throws Exception {
    53. List<Book> list = new BookDao().list(new Book(), null);
    54. for (Book book : list) {
    55. System.out.println(book);
    56. }
    57. }
    58. }

    然后我们运行的结果为:

    三.反射通用后台查询方法 

     像我们之前写完一个dao方法测试的时候是不是就是在后面写一个main方法测试,然后如果有很多方法,然后还有注释掉,然后在写,就会很麻烦。

    现在我们就有这种方法测试,能更简便测试效果

    紧接着就会弹一个出来点ok就好了,然后就会自动创建一个类

    我们在把之前在dao方法里面的main方法里面的方法copy过来,我这里就省略了,直接copy的主要加的部分.这里不管你要测试多少方法,然后copy一份testList()方法即可。

    1. package com.jiangwenjuan.dao;
    2. import java.util.List;
    3. import org.junit.After;
    4. import org.junit.Before;
    5. import org.junit.Test;
    6. import com.jiangwenjuan.entity.Book;
    7. /**
    8. * junit 能够针对单个方法进行测试
    9. * 相对于main方法而言,测试耦合性降低了
    10. * @author 蒋文娟
    11. *
    12. * @date 2022年6月22日 上午12:35:14
    13. */
    14. public class BookDaoTest {
    15. @Before
    16. public void setUp() throws Exception {
    17. System.out.println("被测试方法执行之前调用");
    18. }
    19. @After
    20. public void tearDown() throws Exception {
    21. System.out.println("被测试方法执行之后调用");
    22. }
    23. @Test
    24. public void testList() throws Exception {
    25. List<Book> list = new BookDao().list(new Book(), null);
    26. for (Book book : list) {
    27. System.out.println(book);
    28. }
    29. }
    30. @Test
    31. public void testList2() throws Exception {
    32. System.out.println("测试代码2");
    33. }
    34. }

    怎么运行呢?

    运行出来的结果是一样的:

    总结:junit 能够针对单个方法进行测试,相对于main方法而言,测试耦合性降低了 

    四.怎么去解决dao方法里面重复的代码块

    这个是我们最原始的查询方法,会有很多重复代码块 

    1. package com.jiangwenjuan.dao;
    2. import java.sql.Connection;
    3. import java.sql.PreparedStatement;
    4. import java.sql.ResultSet;
    5. import java.util.ArrayList;
    6. import java.util.List;
    7. import com.jiangwenjuan.entity.Book;
    8. import com.jiangwenjuan.util.DBAccess;
    9. import com.jiangwenjuan.util.PageBean;
    10. import com.jiangwenjuan.util.StringUtils;
    11. /**
    12. * 书籍数据库访问层dao
    13. * @author 蒋文娟
    14. *
    15. * @date 2022年6月21日 下午10:41:30
    16. */
    17. public class BookDao {
    18. public List<Book> list(Book book,PageBean pageBean) throws Exception{
    19. List<Book> list = new ArrayList<Book>();
    20. /*
    21. * 1.拿到数据库连接
    22. * 2.拿到 Preparestatement
    23. * 3.执行SQL语句
    24. */
    25. //创建连接
    26. Connection con = DBAccess.getConnection();// 重复代码1
    27. //定义sql语句
    28. String sql = "select * from tb_book where 1=1 ";
    29. //假如按照书籍的名字查询
    30. String bname = book.getBname();
    31. //如果说这个书籍不为空,你就是想让书籍查询
    32. if(StringUtils.isNotBlank(bname)) {
    33. sql += " and bname like '%"+bname+"%'";
    34. }
    35. //假设按照id进行查询
    36. int bid = book.getBid();
    37. //判断是否为空
    38. if(bid != 0) {
    39. sql+=" and bid ="+bid;
    40. }
    41. //获取执行对象
    42. PreparedStatement ps = con.prepareStatement(sql);// 重复代码2
    43. //获取结果集
    44. ResultSet rs = ps.executeQuery();// 重复代码3
    45. //循环遍历结果集
    46. while(rs.next()) {
    47. list.add(new Book(rs.getInt("bid"), rs.getString("bname"), rs.getFloat("price")));
    48. }
    49. return list;
    50. }
    51. //增删改 junit
    52. public static void main(String[] args) throws Exception {
    53. List<Book> list = new BookDao().list(new Book(), null);
    54. for (Book book : list) {
    55. System.out.println(book);
    56. }
    57. }
    58. }

    我们现在去创建一个类叫BaseDao.java

    1. package com.jiangwenjuan.util;
    2. import java.sql.Connection;
    3. import java.sql.PreparedStatement;
    4. import java.sql.ResultSet;
    5. import java.util.ArrayList;
    6. import java.util.List;
    7. import com.jiangwenjuan.dao.BookDao;
    8. import com.jiangwenjuan.entity.Book;
    9. /**
    10. * 将来你不知道你要查询那张表,用泛型来代替
    11. * T代表的是实体类,可以是Book/User/Goods...
    12. * @author 蒋文娟
    13. *
    14. * @date 2022年6月22日 上午12:39:32
    15. */
    16. public class BaseDao<T> {
    17. public List<T> list(String sql,PageBean pageBean,CallBack<T> callBack) throws Exception{
    18. /*
    19. * 1.拿到数据库连接
    20. * 2.拿到 Preparestatement
    21. * 3.执行SQL语句
    22. */
    23. //创建连接
    24. Connection con = DBAccess.getConnection();// 重复代码1
    25. //获取执行对象
    26. PreparedStatement ps = con.prepareStatement(sql);// 重复代码2
    27. //获取结果集
    28. ResultSet rs = ps.executeQuery();// 重复代码3
    29. //循环遍历结果集
    30. // while(rs.next()) {
    31. // list.add(new Book(rs.getInt("bid"), rs.getString("bname"), rs.getFloat("price")));
    32. // }
    33. //查询不同的表,必然要处理不同的结果集
    34. //接口是调用方来实现
    35. return callBack.foreach(rs);
    36. }
    37. }

    我们创建一个接口CallBack.java

    回调函数接口类的作用?
     谁调用谁处理

    1. package com.jiangwenjuan.util;
    2. import java.sql.ResultSet;
    3. import java.util.List;
    4. /**
    5. *
    6. * @author 蒋文娟
    7. *
    8. * @date 2022年6月22日 上午12:48:34
    9. */
    10. public interface CallBack<T> {
    11. List<T> foreach(ResultSet rs);
    12. }

    解释一下这里的代码块:

    我们现在来用一下

    BookDao.java代码块:主要是继承了BookDao extends BaseDao<Book>,然后分了S阶段和Y阶段的,主要是Y阶段,返回的是调用executeQuery方法实现CallBack接口

    1. package com.jiangwenjuan.dao;
    2. import java.sql.Connection;
    3. import java.sql.PreparedStatement;
    4. import java.sql.ResultSet;
    5. import java.sql.SQLException;
    6. import java.util.ArrayList;
    7. import java.util.List;
    8. import com.jiangwenjuan.entity.Book;
    9. import com.jiangwenjuan.util.BaseDao;
    10. import com.jiangwenjuan.util.DBAccess;
    11. import com.jiangwenjuan.util.PageBean;
    12. import com.jiangwenjuan.util.StringUtils;
    13. /**
    14. * 书籍数据库访问层dao
    15. * @author 蒋文娟
    16. *
    17. * @date 2022年6月21日 下午10:41:30
    18. */
    19. public class BookDao extends BaseDao<Book>{
    20. //S阶段
    21. public List<Book> list(Book book,PageBean pageBean) throws Exception{
    22. List<Book> list = new ArrayList<Book>();
    23. /*
    24. * 1.拿到数据库连接
    25. * 2.拿到 Preparestatement
    26. * 3.执行SQL语句
    27. */
    28. //创建连接
    29. Connection con = DBAccess.getConnection();// 重复代码1
    30. //定义sql语句
    31. String sql = "select * from tb_book where 1=1 ";
    32. //假如按照书籍的名字查询
    33. String bname = book.getBname();
    34. //如果说这个书籍不为空,你就是想让书籍查询
    35. if(StringUtils.isNotBlank(bname)) {
    36. sql += " and bname like '%"+bname+"%'";
    37. }
    38. //假设按照id进行查询
    39. int bid = book.getBid();
    40. //判断是否为空
    41. if(bid != 0) {
    42. sql+=" and bid ="+bid;
    43. }
    44. //获取执行对象
    45. PreparedStatement ps = con.prepareStatement(sql);// 重复代码2
    46. //获取结果集
    47. ResultSet rs = ps.executeQuery();// 重复代码3
    48. //循环遍历结果集
    49. while(rs.next()) {
    50. list.add(new Book(rs.getInt("bid"), rs.getString("bname"), rs.getFloat("price")));
    51. }
    52. return list;
    53. }
    54. //Y阶段第1个版本
    55. public List<Book> list2(Book book,PageBean pageBean) throws Exception{
    56. //定义sql语句
    57. String sql = "select * from tb_book where 1=1 ";
    58. //假如按照书籍的名字查询
    59. String bname = book.getBname();
    60. //如果说这个书籍不为空,你就是想让书籍查询
    61. if(StringUtils.isNotBlank(bname)) {
    62. sql += " and bname like '%"+bname+"%'";
    63. }
    64. //假设按照id进行查询
    65. int bid = book.getBid();
    66. //判断是否为空
    67. if(bid != 0) {
    68. sql+=" and bid ="+bid;
    69. }
    70. //调用的rs的方法返回的是list集合,所以说list集合,返回Book里面的值
    71. return super.executeQuery(sql, null, rs->{
    72. List<Book> list = new ArrayList<>();
    73. try {
    74. while(rs.next()) {
    75. list.add(new Book(rs.getInt("bid"), rs.getString("bname"), rs.getFloat("price")));
    76. }
    77. } catch (SQLException e) {
    78. // TODO Auto-generated catch block
    79. e.printStackTrace();
    80. }
    81. return list;
    82. });
    83. }
    84. //增删改 junit
    85. public static void main(String[] args) throws Exception {
    86. List<Book> list = new BookDao().list(new Book(), null);
    87. for (Book book : list) {
    88. System.out.println(book);
    89. }
    90. }
    91. }

    最终我们去junit里面去测试一下

    1. package com.jiangwenjuan.dao;
    2. import java.util.List;
    3. import org.junit.After;
    4. import org.junit.Before;
    5. import org.junit.Test;
    6. import com.jiangwenjuan.entity.Book;
    7. /**
    8. * junit 能够针对单个方法进行测试
    9. * 相对于main方法而言,测试耦合性降低了
    10. * @author 蒋文娟
    11. *
    12. * @date 2022年6月22日 上午12:35:14
    13. */
    14. public class BookDaoTest {
    15. @Before
    16. public void setUp() throws Exception {
    17. System.out.println("被测试方法执行之前调用");
    18. }
    19. @After
    20. public void tearDown() throws Exception {
    21. System.out.println("被测试方法执行之后调用");
    22. }
    23. //之前测试的
    24. @Test
    25. public void testList() throws Exception {
    26. List<Book> list = new BookDao().list(new Book(), null);
    27. for (Book book : list) {
    28. System.out.println(book);
    29. }
    30. }
    31. //现在我们去除了重复代码块的的测试
    32. @Test
    33. public void testList2() throws Exception {
    34. List<Book> list = new BookDao().list2(new Book(), null);
    35. for (Book book : list) {
    36. System.out.println(book);
    37. }
    38. }
    39. }

    运行结果为:

    五.通用的分页后台查询方法 

    目前是第一版本的,其实还有二个版本

    1.按S阶段的方式写了一个查询 

    发现了问题:①有重复代码②分页参数不清晰

    解决方案:①BaseDao②pageBean

    2.BaseDao 

    发现:不同的人调用,处理resultset方式是不一样的

    解决方案:通过回调函数解决   CallBack

    3.CallBack

    这里的回调函数其实用的是23种设计模式中的策略模式

    4.通用分页

    原始SQL:调用方拼接好的SQL

    分页SQL:页面要展示数据的SQL,第N也得数据

    符合条件的总记录数SQL:是为了那到总记录数,计算总页面

    第一个难理解的:关于S阶段,重复代码有三个,还有一个问题关于分页的参数始终都不知道我该传那些参数,那么现在就已经帮我们封装了PageBean,把所有分页的一些元素都封装到实体类里面去,要分页我不要管到底是用页码啊还是要总记录数啊还是每页展示多少条记录等,我们不需要,我们只要咋变就变就行了,那么处于这总考虑有很多重复代码的考虑,所以说我们就去封装了这个BaseDao<T>,怎么去封装的,先把单个查询粘贴过来,然后在进行改造,整个过程中这三个重复代码肯定是需要的,不要删掉,之类继承父类,所以我把公共部分保留了,对应不同的代码,我查不同的表,是不是肯定有不同的sql语句,所以说我们就单独的在这个父类baseDao《T》里面定义了一个sql的参数,在下面传过来的。

    BaseDao《T》里面的返回的是callBack.java为什么是回调函数,被人调用的是不同的数据的,有可能是商品啊,书籍啊,用户啊等等,对于不同的表,谁调用谁处理。我这边查询的书籍,就按照书籍去处理就行了

    1. //创建连接
    2. Connection con = DBAccess.getConnection();// 重复代码1
    3. //获取执行对象
    4. PreparedStatement ps = con.prepareStatement(sql);// 重复代码2
    5. //获取结果集
    6. ResultSet rs = ps.executeQuery();// 重复代码3

     第二个难理解的:我要分页的话,我已经从调用方,组装好的sql语句进行分页,那么分页的话有两个东西非常重要,第一个对于用户而言我分页可能要展示第一页第二页第三页第四页的数据,那么对应的就要用  limit去查 那么后续话我们还要点下一页,那么一共有多少页我们要查出来,我们必须要得到总记录数,总记录数怎么的,是不是的从原始的SQL转换一个获取总记录的SQL

     

    这个BookDao.java,返回值哪里返回了分页的条件 

    1. package com.jiangwenjuan.dao;
    2. import java.sql.Connection;
    3. import java.sql.PreparedStatement;
    4. import java.sql.ResultSet;
    5. import java.sql.SQLException;
    6. import java.util.ArrayList;
    7. import java.util.List;
    8. import com.jiangwenjuan.entity.Book;
    9. import com.jiangwenjuan.util.BaseDao;
    10. import com.jiangwenjuan.util.DBAccess;
    11. import com.jiangwenjuan.util.PageBean;
    12. import com.jiangwenjuan.util.StringUtils;
    13. /**
    14. * 书籍数据库访问层dao
    15. * @author 蒋文娟
    16. *
    17. * @date 2022年6月21日 下午10:41:30
    18. */
    19. public class BookDao extends BaseDao<Book>{
    20. //S阶段
    21. public List<Book> list(Book book,PageBean pageBean) throws Exception{
    22. List<Book> list = new ArrayList<Book>();
    23. /*
    24. * 1.拿到数据库连接
    25. * 2.拿到 Preparestatement
    26. * 3.执行SQL语句
    27. */
    28. //创建连接
    29. Connection con = DBAccess.getConnection();// 重复代码1
    30. //定义sql语句
    31. String sql = "select * from tb_book where 1=1 ";
    32. //假如按照书籍的名字查询
    33. String bname = book.getBname();
    34. //如果说这个书籍不为空,你就是想让书籍查询
    35. if(StringUtils.isNotBlank(bname)) {
    36. sql += " and bname like '%"+bname+"%'";
    37. }
    38. //假设按照id进行查询
    39. int bid = book.getBid();
    40. //判断是否为空
    41. if(bid != 0) {
    42. sql+=" and bid ="+bid;
    43. }
    44. //获取执行对象
    45. PreparedStatement ps = con.prepareStatement(sql);// 重复代码2
    46. //获取结果集
    47. ResultSet rs = ps.executeQuery();// 重复代码3
    48. //循环遍历结果集
    49. while(rs.next()) {
    50. list.add(new Book(rs.getInt("bid"), rs.getString("bname"), rs.getFloat("price")));
    51. }
    52. return list;
    53. }
    54. //Y阶段第1个版本
    55. public List<Book> list2(Book book,PageBean pageBean) throws Exception{
    56. //定义sql语句
    57. String sql = "select * from tb_book where 1=1 ";
    58. //假如按照书籍的名字查询
    59. String bname = book.getBname();
    60. //如果说这个书籍不为空,你就是想让书籍查询
    61. if(StringUtils.isNotBlank(bname)) {
    62. sql += " and bname like '%"+bname+"%'";
    63. }
    64. //假设按照id进行查询
    65. int bid = book.getBid();
    66. //判断是否为空
    67. if(bid != 0) {
    68. sql+=" and bid ="+bid;
    69. }
    70. //调用的rs的方法返回的是list集合,所以说list集合,返回Book里面的值
    71. return super.executeQuery(sql, pageBean, rs->{
    72. List<Book> list = new ArrayList<>();
    73. try {
    74. while(rs.next()) {
    75. list.add(new Book(rs.getInt("bid"), rs.getString("bname"), rs.getFloat("price")));
    76. }
    77. } catch (SQLException e) {
    78. // TODO Auto-generated catch block
    79. e.printStackTrace();
    80. }
    81. return list;
    82. });
    83. }
    84. //增删改 junit
    85. public static void main(String[] args) throws Exception {
    86. List<Book> list = new BookDao().list(new Book(), null);
    87. for (Book book : list) {
    88. System.out.println(book);
    89. }
    90. }
    91. }

     BaseDao.java 分页的代码块

    1. package com.jiangwenjuan.util;
    2. import java.sql.Connection;
    3. import java.sql.PreparedStatement;
    4. import java.sql.ResultSet;
    5. import java.util.ArrayList;
    6. import java.util.List;
    7. import com.jiangwenjuan.dao.BookDao;
    8. import com.jiangwenjuan.entity.Book;
    9. /**
    10. * 将来你不知道你要查询那张表,用泛型来代替
    11. * T代表的是实体类,可以是Book/User/Goods...
    12. * @author 蒋文娟
    13. *
    14. * @date 2022年6月22日 上午12:39:32
    15. */
    16. public class BaseDao<T> {
    17. // public List<T> executeQuery(String sql,PageBean pageBean,CallBack<T> callBack) throws Exception{
    18. // /*
    19. // *1.拿到数据库连接
    20. // *2.拿到Preparestatement
    21. // *3.执行SQL语句
    22. // */
    23. // //创建连接
    24. // Connection con = DBAccess.getConnection();// 重复代码1
    25. // //获取执行对象
    26. // PreparedStatement ps = con.prepareStatement(sql);// 重复代码2
    27. // //获取结果集
    28. // ResultSet rs = ps.executeQuery();// 重复代码3
    29. // //循环遍历结果集
    30. while(rs.next()) {
    31. list.add(new Book(rs.getInt("bid"), rs.getString("bname"), rs.getFloat("price")));
    32. }
    33. // //查询不同的表,必然要处理不同的结果集
    34. // //接口是调用方来实现
    35. // return callBack.foreach(rs);
    36. // }
    37. public List<T> executeQuery(String sql,PageBean pageBean,CallBack<T> callBack) throws Exception{
    38. // select * from tb_book where bname like '%o%';
    39. //这个查询不行,因为跟上面代码查询组装不起来
    40. // select count(*) from tb_book where bname like '%o%'
    41. //所以说为什么要这么变,因为不仅仅考虑写出来简单,你还要发现转变的问题
    42. // String countsql="select count(1) as n from ("+sql+") t";
    43. //但这个可以组装
    44. //从上面得到select count(1) as n from (select * from tb_book where bname like '%o%') t;
    45. //目的是为了得到总记录数-->得到总页数
    46. // select * from tb_book where bname like '%o%' limit 10,10;
    47. /*
    48. *1.拿到数据库连接
    49. *2.拿到Preparestatement
    50. *3.执行SQL语句
    51. */
    52. //创建连接
    53. Connection con = null;// 重复代码1
    54. //获取执行对象
    55. PreparedStatement ps = null;// 重复代码2
    56. //获取结果集
    57. ResultSet rs = null;// 重复代码3
    58. //判断是否分页 并且判断是否为true
    59. if(pageBean != null && pageBean.isPagination()) {//说明要分页
    60. //拿到总记录数 拼接原始的mysql
    61. String countSQL = getcountSQL(sql);
    62. con = DBAccess.getConnection();// 重复代码1
    63. ps = con.prepareStatement(countSQL);// 重复代码2
    64. rs= ps.executeQuery();// 重复代码3
    65. //查询出来的总行数是不是单行单列啊,所以说不需要while,判断即可
    66. if(rs.next()) {
    67. //把我们查询出来的总记录数放在pageBean里面,pageBean它是包含了所有的分页的一些元素的实体类
    68. //当前实体类就包含了总记录数
    69. pageBean.setTotal(rs.getString("n"));
    70. }
    71. //拼接
    72. String pageSQL = pagePageSQL(sql,pageBean);
    73. con = DBAccess.getConnection();// 重复代码1
    74. ps = con.prepareStatement(pageSQL);// 重复代码2
    75. rs= ps.executeQuery();// 重复代码3
    76. }
    77. else {
    78. con = DBAccess.getConnection();// 重复代码1
    79. ps = con.prepareStatement(sql);// 重复代码2
    80. rs= ps.executeQuery();// 重复代码3
    81. }
    82. return callBack.foreach(rs);
    83. }
    84. /**
    85. * 拼装第N页的数据的SQL
    86. * @param sql
    87. * @param pageBean
    88. * @return
    89. */
    90. private String pagePageSQL(String sql, PageBean pageBean) {
    91. //这里相当于limit 1,10
    92. return sql+" limit "+pageBean.getStartIndex()+","+pageBean.getRows();
    93. }
    94. /**
    95. * 拼装符合条件总记录数的SQL
    96. * @param sql
    97. * @return
    98. */
    99. private String getcountSQL(String sql) {
    100. // select * from tb_book where bname like '%o%';
    101. //这个查询不行,因为跟上面代码查询组装不起来
    102. // select count(*) from tb_book where bname like '%o%'
    103. //所以说为什么要这么变,因为不仅仅考虑写出来简单,你还要发现转变的问题
    104. // String countsql="select count(1) as n from ("+sql+") t";
    105. //下面这行代码就解决了上面的问题,由原始SQL换成查询总行数的SQL
    106. //为什么不是*因为*代表的所以列,而写1代表的是一列,哪个性能更好,肯定是1
    107. return "select count(1) as n from ("+sql+") t";
    108. }
    109. }

     PageBean.java

    1. package com.jiangwenjuan.util;
    2. /**
    3. * 分页工具类
    4. * @author 蒋文娟
    5. *
    6. * @date 2022年6月21日 下午8:15:46
    7. */
    8. public class PageBean {
    9. private int page = 1;// 页码
    10. private int rows = 10;// 页大小
    11. private int total = 0;// 总记录数
    12. private boolean pagination = true;// 是否分页
    13. public PageBean() {
    14. super();
    15. }
    16. public int getPage() {
    17. return page;
    18. }
    19. public void setPage(int page) {
    20. this.page = page;
    21. }
    22. public int getRows() {
    23. return rows;
    24. }
    25. public void setRows(int rows) {
    26. this.rows = rows;
    27. }
    28. public int getTotal() {
    29. return total;
    30. }
    31. public void setTotal(int total) {
    32. this.total = total;
    33. }
    34. public void setTotal(String total) {
    35. this.total = Integer.parseInt(total);
    36. }
    37. public boolean isPagination() {
    38. return pagination;
    39. }
    40. public void setPagination(boolean pagination) {
    41. this.pagination = pagination;
    42. }
    43. /**
    44. * 获得起始记录的下标
    45. *
    46. * @return
    47. */
    48. public int getStartIndex() {
    49. return (this.page - 1) * this.rows;
    50. }
    51. @Override
    52. public String toString() {
    53. return "PageBean [page=" + page + ", rows=" + rows + ", total=" + total + ", pagination=" + pagination + "]";
    54. }
    55. }

     BookDaoText.java测试方法针对单个方法进行测试

    1. package com.jiangwenjuan.dao;
    2. import java.util.List;
    3. import org.junit.After;
    4. import org.junit.Before;
    5. import org.junit.Test;
    6. import com.jiangwenjuan.entity.Book;
    7. import com.jiangwenjuan.util.PageBean;
    8. /**
    9. * junit 能够针对单个方法进行测试
    10. * 相对于main方法而言,测试耦合性降低了
    11. * @author 蒋文娟
    12. *
    13. * @date 2022年6月22日 上午12:35:14
    14. */
    15. public class BookDaoTest {
    16. @Before
    17. public void setUp() throws Exception {
    18. System.out.println("被测试方法执行之前调用");
    19. }
    20. @After
    21. public void tearDown() throws Exception {
    22. System.out.println("被测试方法执行之后调用");
    23. }
    24. @Test
    25. public void testList() throws Exception {
    26. List<Book> list = new BookDao().list(new Book(), null);
    27. for (Book book : list) {
    28. System.out.println(book);
    29. }
    30. }
    31. @Test
    32. public void testList2() throws Exception {
    33. List<Book> list = new BookDao().list2(new Book(), null);
    34. for (Book book : list) {
    35. System.out.println(book);
    36. }
    37. }
    38. @Test
    39. public void testList3() throws Exception {
    40. Book b = new Book();
    41. //如果说只想查询关于一个的o
    42. b.setBname("o");
    43. PageBean pageBean = new PageBean();
    44. //如果想要查询第二的数据
    45. pageBean.setPage(1);
    46. //如果我一页不想显示10条想显示20
    47. pageBean.setRows(20);
    48. List<Book> list = new BookDao().list2(b, pageBean);
    49. for (Book book : list) {
    50. System.out.println(book);
    51. }
    52. }
    53. }

     

    分页的所用的类: 

     记得导入jia包:

  • 相关阅读:
    不会写代码同学的福音——AI 代码生成器 Amazon CodeWhisperer(通过注释写代码)
    OpenCV实战项目 -- 口罩识别
    web第十课:table表格标签
    Web前端大作业—— 饮食餐饮网站 咖啡网站pc端带轮播(5个页面)HTML+CSS+JavaScript 学生美食网页设计作品 学生餐饮文化网页模板
    自己动手从零写桌面操作系统GrapeOS系列教程——8.x86介绍
    【0143】 System V共享内存(Shared Memory)
    虚拟机中centos扩展根目录空间
    ES Aggs count distinct group by聚合排序查询
    LABVIEW 安装教程(超详细)
    【微信小程序调试工具试用】
  • 原文地址:https://blog.csdn.net/weixin_67465673/article/details/125397521