【图书管理系统】Servlet+JSP+MySql 实现的一个前后端 javaweb项目(内附源 ...

十念  金牌会员 | 2022-6-25 17:57:40 | 显示全部楼层 | 阅读模式
打印 上一主题 下一主题

主题 792|帖子 792|积分 2376

源码分享在文末!

文章目录




前言

学习完Javaweb的知识后做了个项目练练手,我选择了经典而且比较简单的图书管理系统。
最近有时间,整理了一下,分享给大家,希望能够帮到你!
一、项目技术



  • 基于B/S结构
  • 前端: HTML+CSS+JS +JQuery
  • 后端: Servlet+JSP+MySql
二、开发环境和工具



  • 操作系统: win8/win10
  • JDK: 8.0
  • 开发工具: Intellij IDEA2020.1 旗舰版
  • 服务器: Tomcat8.0
  • 数据库工具:mysql5.5 +Navicat Premium 12
开发工具我也为大家打包好了,关注文末的公众号,回复“Java全家桶”即可获得
三、项目成品演示


四、项目讲解

技术介绍


  • JSP: JavaServer Pages是由Sun Microsystems公司倡导、许多公司参与一起建立的一种动态网页技术标准。
  • Apache: Apache是世界使用排名第一的Web服务器软件。
  • Ajax:Asynchronous Javascript And XML(异步JavaScript和XML),是指一种创建交互式网页应用的网页开发技术。通过在后台与服务器进行少量数据交换,AJAX 可以使网页实现异步更新。
  • C3P0:数据库连接池
  • OSI:Open System Interconnect 开放系统互连参考模型。
  • MVC:Model View Controller ,是模型(model)-视图(view)-控制器(controller)的缩写,一种软件设计典范,用一种业务逻辑、数据、界面显示分离的方法组织代码。
  • DBUtils:Commons DbUtils是Apache组织提供的一个对JDBC进行简单封装的开源工具类库,使用它能够简化JDBC应用程序的开发,同时也不会影响程序的性能。
工作原理:
浏览器和服务器通过http协议来建立连接的。浏览器经过http的请求协议将用户想要的信息传到web服务器。
然后,web服务器会干一件事,判断页面是静态还是动态。
如果是静态,web服务器就直接将用户想要的信息通过响应封装好了之后再返回给浏览器;
如果是动态,web服务器会将接收到的内容传递给web容器,web容器再将内容传给Servlet,(那么web容器是怎么将内容传给servlet的呢?分析:web容器在将信息传递给servlet的时候必须到web.xml的配置文件中去找到Servlet的url-pattern路径),在找到servlet后,web容器再启动一个servlet线程,然后再返回给web容器,web容器在将信息封装好传给web服务器,web服务器再将得到的信息解析后,通过响应封装好了,在传递到浏览器。
如下图所示

数据库表及其关系

项目结构展示


  • 后端

  • 前端

五、源码展示

书籍实体类
  1. /**
  2. * 书的实体类:注意外键
  3. * 1.DBUtil无法生成表以外的数据
  4. * 2.外键的实体对象没有数据,需要后期手动添加biz(业务去实现)
  5. */
  6. public class Book implements Serializable {
  7.   private long id;
  8.   //外键号
  9.   private long typeId;
  10.   private String name;
  11.   private double price;
  12.   private String desc;
  13.   private String pic;
  14.   private String publish;
  15.   private String author;
  16.   private long stock;
  17.   private String address;
  18.   //外键对应的实体对象
  19.   private Type  type;
  20.   public Type getType() {
  21.     return type;
  22.   }
  23.   public void setType(Type type) {
  24.     this.type = type;
  25.   }
  26.   public long getId() {
  27.     return id;
  28.   }
  29.   public void setId(long id) {
  30.     this.id = id;
  31.   }
  32.   public long getTypeId() {
  33.     return typeId;
  34.   }
  35.   public void setTypeId(long typeId) {
  36.     this.typeId = typeId;
  37.   }
  38.   public String getName() {
  39.     return name;
  40.   }
  41.   public void setName(String name) {
  42.     this.name = name;
  43.   }
  44.   public double getPrice() {
  45.     return price;
  46.   }
  47.   public void setPrice(double price) {
  48.     this.price = price;
  49.   }
  50.   public String getDesc() {
  51.     return desc;
  52.   }
  53.   public void setDesc(String desc) {
  54.     this.desc = desc;
  55.   }
  56.   public String getPic() {
  57.     return pic;
  58.   }
  59.   public void setPic(String pic) {
  60.     this.pic = pic;
  61.   }
  62.   public String getPublish() {
  63.     return publish;
  64.   }
  65.   public void setPublish(String publish) {
  66.     this.publish = publish;
  67.   }
  68.   public String getAuthor() {
  69.     return author;
  70.   }
  71.   public void setAuthor(String author) {
  72.     this.author = author;
  73.   }
  74.   public long getStock() {
  75.     return stock;
  76.   }
  77.   public void setStock(long stock) {
  78.     this.stock = stock;
  79.   }
  80.   public String getAddress() {
  81.     return address;
  82.   }
  83.   public void setAddress(String address) {
  84.     this.address = address;
  85.   }
  86.   @Override
  87.   public String toString() {
  88.     return "Book{" +
  89.             "id=" + id +
  90.             ", typeId=" + typeId +
  91.             ", name='" + name + '\'' +
  92.             ", price=" + price +
  93.             ", desc='" + desc + '\'' +
  94.             ", pic='" + pic + '\'' +
  95.             ", publish='" + publish + '\'' +
  96.             ", author='" + author + '\'' +
  97.             ", stock=" + stock +
  98.             ", address='" + address + '\'' +
  99.             ", type=" + type +
  100.             '}';
  101.   }
  102. }
复制代码
书籍的Servlet层
  1. @WebServlet("/book.let")
  2. public class BookServlet extends HttpServlet {
  3.     BookBiz bookBiz = new BookBiz();
  4.     @Override
  5.     protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
  6.         doPost(req, resp);
  7.     }
  8.     /**
  9.      * /book.let?type=add 添加图片
  10.      * /book.let?type=modifypre&id=xx 修改前准备
  11.      * /book.let?type=modify 修改
  12.      * /book.let?type=remove&id=xx 删除
  13.      * /book.let?type=query&pageIndex=1 分页查询-请求转发
  14.      * /book.let?type=details&id=xx 展示书籍详细信息
  15.      * /book.let?type=doajax&name=xx 根据图书名对应的图书信息
  16.      * @param req
  17.      * @param resp
  18.      * @throws ServletException
  19.      * @throws IOException
  20.      */
  21.     @Override
  22.     protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
  23.         req.setCharacterEncoding("utf-8");
  24.         resp.setContentType("text/html;charset=utf-8");
  25.         PrintWriter out = resp.getWriter();
  26.         //验证用户是否登录
  27.         HttpSession session = req.getSession();
  28.         if(session.getAttribute("user") == null) {
  29.             out.println("");
  30.             return;
  31.         }
  32.         String type = req.getParameter("type");
  33.         switch (type) {
  34.             case "add":
  35.                 try {
  36.                     add(req, resp, out);
  37.                 } catch (Exception e) {
  38.                     e.printStackTrace();
  39.                     resp.sendError(500, e.getMessage());
  40.                 }
  41.                 break;
  42.             case "modifypre":
  43.                 ///book.let?type=modifypre&id=xx 修改前准备
  44.                 long bookId = Long.parseLong(req.getParameter("id"));
  45.                 Book book = bookBiz.getById(bookId);
  46.                 req.setAttribute("book", book);
  47.                 req.getRequestDispatcher("book_modify.jsp").forward(req,resp);
  48.                 break;
  49.             case "modify":
  50.                 try {
  51.                     modify(req, resp,out);
  52.                 } catch (Exception e) {
  53.                     e.printStackTrace();
  54.                 }
  55.                 break;
  56.             case "remove":
  57.                 //1.获取删除书籍id
  58.                 long id = Long.parseLong(req.getParameter("id"));
  59.                 //2.调用biz层删除
  60.                 try {
  61.                     int count = bookBiz.remove(id);
  62.                     //3.提示+跳转到查询的servlet -out对象
  63.                     if(count > 0) {
  64.                         out.println("");
  65.                     }else{
  66.                         out.println("");
  67.                     }
  68.                 } catch (Exception e) {
  69.                     //e.printStackTrace();
  70.                     out.println("");
  71.                 }
  72.             case "query":
  73.                 query(req, resp);
  74.                 break;
  75.             case "details":
  76.                 details(req, resp,out);
  77.                 break;
  78.             case "doajax":
  79.                 String name = req.getParameter("name");
  80.                 Book book1 = bookBiz.getByName(name);
  81.                 if(book1 == null) {
  82.                     out.print("{}");//null的json对象
  83.                 }else{
  84.                     out.print(JSON.toJSONString(book1));
  85.                 }
  86.                 break;
  87.             default:
  88.                 out.println("404");
  89.         }
  90.     }
  91.     /**
  92.      * 修改图书信息
  93.      * @param req
  94.      * @param resp
  95.      * @param out
  96.      */
  97.     private void modify(HttpServletRequest req, HttpServletResponse resp, PrintWriter out) throws Exception {
  98.         //1.创建磁盘工厂-临时存储文件磁盘-
  99.         DiskFileItemFactory factory = new DiskFileItemFactory();
  100.         //1.1设置大小
  101.         factory.setSizeThreshold(1024*9);
  102.         //1.2临时仓库
  103.         File file = new File("c:\\temp");
  104.         if(!file.exists()) {
  105.             file.mkdir();//创建文件夹
  106.         }
  107.         factory.setRepository(file);
  108.         //2.文件上传+表单数据
  109.         ServletFileUpload fileUpload = new ServletFileUpload(factory);
  110.         //3.将请求解析为一个个FileItem(文件+表单元素)
  111.         List<FileItem> fileItems = fileUpload.parseRequest(req);
  112.         //4.遍历FileItem
  113.         Book book = new Book();
  114.         for(FileItem item : fileItems) {
  115.             if(item.isFormField()) {
  116.                 //4.1表单:获取表单元素(元素名称与用户填写对应值)
  117.                 String name = item.getFieldName();
  118.                 String value = item.getString("utf-8");//防止乱码
  119.                 switch(name) {
  120.                     case "id":
  121.                         book.setId(Long.parseLong(value));
  122.                         break;
  123.                     case "pic":
  124.                         book.setPic(value);
  125.                         break;
  126.                     case "typeId":
  127.                         book.setTypeId(Long.parseLong(value));
  128.                         break;
  129.                     case "name":
  130.                         book.setName(value);
  131.                         break;
  132.                     case "price":
  133.                         book.setPrice(Double.parseDouble(value));
  134.                         break;
  135.                     case "desc":
  136.                         book.setDesc(value);
  137.                         break;
  138.                     case "publish":
  139.                         book.setPublish(value);
  140.                         break;
  141.                     case "author":
  142.                         book.setAuthor(value);
  143.                         break;
  144.                     case "stock":
  145.                         book.setStock(Long.parseLong(value));
  146.                         break;
  147.                     case "address":
  148.                         book.setAddress(value);
  149.                         break;
  150.                 }
  151.             }else{
  152.                 //4.2文件:图片的文件名,用户不选择图片时,fileName的数据为""
  153.                 String fileName = item.getName();
  154.                 if(fileName.trim().length() > 0) {
  155.                     //避免文件替换(名称重复)来使用:当前系统时间.png
  156.                     //4.2.1获取文件后缀名(文件类型)
  157.                     String filterName = fileName.substring(fileName.lastIndexOf("."));
  158.                     //4.2.1修改文件名 20220312545412245.png
  159.                     fileName = DateHelper.getImageName() + filterName;
  160.                     //文件上传之后保存到哪里
  161.                     // 文件读写需要实际路径:虚拟路径对应的实际路径
  162.                     String path = req.getServletContext().getRealPath("/Images/cover");
  163.                     String filePath = path + "/" + fileName;
  164.                     String dbPath = "Images/cover/" + fileName;
  165.                     book.setPic(dbPath);
  166.                     //4.3保存文件
  167.                     item.write(new File(filePath));
  168.                 }
  169.             }
  170.         }
  171.         //5.将信息保存到数据库
  172.         int count = bookBiz.modify(book);
  173.         if(count > 0) {
  174.             out.println("");
  175.         }else {
  176.             out.println("");
  177.         }
  178.     }
  179.     /**
  180.      * 查看图书详情
  181.      * /book.let?type=details&id=xx 展示书籍详细信息
  182.      * @param req
  183.      * @param resp
  184.      */
  185.     private void details(HttpServletRequest req, HttpServletResponse resp, PrintWriter out) throws ServletException, IOException {
  186.         //1.获取图书编号
  187.         long id = Long.parseLong(req.getParameter("id"));
  188.         //2.根据编号获取图书对象
  189.         Book book = bookBiz.getById(id);
  190.         //3.将对象保存到request
  191.         req.setAttribute("book", book);
  192.         //4.请求转发到jsp页面
  193.         req.getRequestDispatcher("book_details.jsp").forward(req, resp);
  194.     }
  195.     /**
  196.      * 查询
  197.      * /book.let?type=query&pageIndex=1 分页查询-请求转发
  198.      * 页数:
  199.      * 当前页码:pageIndex=1
  200.      * 信息存储:request 使用请求转发从servlet-->jsp
  201.      * @param req
  202.      * @param resp
  203.      */
  204.     private void query(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
  205.         //1.获取信息:页数,页码,信息
  206.         int pageSize = 3;
  207.         int pageCount = bookBiz.getPageCount(pageSize);
  208.         int pageIndex = Integer.parseInt(req.getParameter("pageIndex"));
  209.         if(pageIndex < 1) {
  210.             pageIndex = 1;
  211.         }
  212.         if(pageIndex > pageCount) {
  213.             pageIndex = pageCount;
  214.         }
  215.         List<Book> books = bookBiz.getByPage(pageIndex, pageSize);
  216.         //2.存
  217.         req.setAttribute("pageCount",pageCount);
  218.         req.setAttribute("books", books);
  219.         //3.请求转发到jsp
  220.         req.getRequestDispatcher("book_list.jsp?pageIndex="+pageIndex).forward(req,resp);
  221.     }
  222.     /**
  223.      * 添加书籍
  224.      * 1.multipart/form-data:与之前不同:
  225.      * 之前:获取表单元素 req.getParameter()
  226.      * 2.文件上传:图片文件从浏览器端保存到服务器端(第三方FileUpload+io)
  227.      * 3.路径问题:
  228.      *  3.1图片本地路径:实际路径
  229.      *  3.2项目发布之后图片路径url:虚拟路径(存在服务器中)
  230.      * @param req
  231.      * @param resp
  232.      * @param out
  233.      */
  234.     private void add(HttpServletRequest req, HttpServletResponse resp, PrintWriter out) throws Exception {
  235.         //1.创建磁盘工厂-临时存储文件磁盘-
  236.         DiskFileItemFactory factory = new DiskFileItemFactory();
  237.         //1.1设置大小
  238.         factory.setSizeThreshold(1024*9);
  239.         //1.2临时仓库
  240.         File file = new File("c:\\temp");
  241.         if(!file.exists()) {
  242.             file.mkdir();//创建文件夹
  243.         }
  244.         factory.setRepository(file);
  245.         //2.文件上传+表单数据
  246.         ServletFileUpload fileUpload = new ServletFileUpload(factory);
  247.         //3.将请求解析为一个个FileItem(文件+表单元素)
  248.         List<FileItem> fileItems = fileUpload.parseRequest(req);
  249.         //4.遍历FileItem
  250.         Book book = new Book();
  251.         for(FileItem item : fileItems) {
  252.             if(item.isFormField()) {
  253.                 //4.1表单:获取表单元素(元素名称与用户填写对应值)
  254.                 String name = item.getFieldName();
  255.                 String value = item.getString("utf-8");//防止乱码
  256.                 switch(name) {
  257.                     case "typeId":
  258.                         book.setTypeId(Long.parseLong(value));
  259.                         break;
  260.                     case "name":
  261.                         book.setName(value);
  262.                         break;
  263.                     case "price":
  264.                         book.setPrice(Double.parseDouble(value));
  265.                         break;
  266.                     case "desc":
  267.                         book.setDesc(value);
  268.                         break;
  269.                     case "publish":
  270.                         book.setPublish(value);
  271.                         break;
  272.                     case "author":
  273.                         book.setAuthor(value);
  274.                         break;
  275.                     case "stock":
  276.                         book.setStock(Long.parseLong(value));
  277.                         break;
  278.                     case "address":
  279.                         book.setAddress(value);
  280.                         break;
  281.                 }
  282.             }else{
  283.                 //4.2文件:图片的文件名
  284.                 String fileName = item.getName();
  285.                 //避免文件替换(名称重复)来使用:当前系统时间.png
  286.                 //4.2.1获取文件后缀名(文件类型)
  287.                 String filterName = fileName.substring(fileName.lastIndexOf("."));
  288.                 //4.2.1修改文件名 20220312545412245.png
  289.                 fileName = DateHelper.getImageName() + filterName;
  290.                 //文件上传之后保存到哪里
  291.                 // 文件读写需要实际路径:虚拟路径对应的实际路径
  292.                 String path = req.getServletContext().getRealPath("/Images/cover");
  293.                 String filePath = path + "/" + fileName;
  294.                 String dbPath = "Images/cover/" + fileName;
  295.                 book.setPic(dbPath);
  296.                 //4.3保存文件
  297.                 item.write(new File(filePath));
  298.             }
  299.         }
  300.         //5.将信息保存到数据库
  301.         int count = bookBiz.add(book);
  302.         if(count > 0) {
  303.             out.println("");
  304.         }else {
  305.             out.println("");
  306.         }
  307.     }
  308. }
复制代码
书籍的biz层
  1. public class BookBiz {
  2.     //BookDao对象
  3.     BookDao bookDao = new BookDao();
  4.     /**
  5.      * 根据类型编号获得书籍
  6.      * @param typeId
  7.      * @return
  8.      */
  9.     public List<Book> getBooksByTypeId(long typeId) {
  10.         try {
  11.             return bookDao.getBooksByTypeId(typeId);
  12.         } catch (SQLException throwables) {
  13.             throwables.printStackTrace();
  14.             return null;
  15.         }
  16.     }
  17.     /**
  18.      * 根据书籍信息来添加书本
  19.      * @param typeId
  20.      * @param name
  21.      * @param price
  22.      * @param desc
  23.      * @param pic
  24.      * @param publish
  25.      * @param author
  26.      * @param stock
  27.      * @param address
  28.      * @return
  29.      */
  30.     public int add(long typeId, String name, Double price, String desc, String pic, String publish, String author, long stock, String address) {
  31.         int count = 0;
  32.         try {
  33.             count = bookDao.add(typeId, name, price, desc, pic, publish, author, stock, address);
  34.         } catch (SQLException throwables) {
  35.             throwables.printStackTrace();
  36.         }
  37.         return count;
  38.     }
  39.     /**
  40.      * 如果用户使用对象的方式来添加书籍
  41.      * @param book
  42.      * @return
  43.      */
  44.     public int add(Book book) {
  45.         return add(book.getTypeId(), book.getName(), book.getPrice(), book.getDesc(), book.getPic(), book.getPublish(), book.getAuthor(), book.getStock(), book.getAddress());
  46.     }
  47.     public int modify(Book book) {
  48.         return modify(book.getId(),book.getTypeId(), book.getName(), book.getPrice(), book.getDesc(), book.getPic(), book.getPublish(), book.getAuthor(), book.getStock(), book.getAddress());
  49.     }
  50.     public int modify(long id, long typeId, String name, Double price, String desc, String pic, String publish, String author, long stock, String address) {
  51.         int count = 0;
  52.         try {
  53.             count = bookDao.modify(id, typeId, name, price, desc, pic, publish, author, stock, address);
  54.         } catch (SQLException throwables) {
  55.             throwables.printStackTrace();
  56.         }
  57.         return count;
  58.     }
  59.     public int remove(long id) throws Exception {
  60.         //1.判断id是否存在外键,存在无法删除
  61.         RecordDao recordDao = new RecordDao();
  62.         //2.删除
  63.         int count = 0;
  64.         try {
  65.             List<Record> records = recordDao.getRecordByBookId(id);
  66.             if(records.size() > 0) {
  67.                 throw new Exception("删除的书籍有子信息,删除失败");
  68.             }
  69.             count = bookDao.remove(id);
  70.         } catch (SQLException throwables) {
  71.             throwables.printStackTrace();
  72.         }
  73.         return count;
  74.     }
  75.     /**
  76.      * 12:03
  77.      * @param pageIndex
  78.      * @param pageSize
  79.      * @return
  80.      */
  81.     public List<Book> getByPage(int pageIndex, int pageSize) {
  82.         TypeDao typeDao = new TypeDao();
  83.         List<Book> books = null;
  84.         try {
  85.             books = bookDao.getByPage(pageIndex, pageSize);
  86.             //处理type对象的数据问题
  87.             for(Book book : books) {
  88.                 long typeId = book.getTypeId();
  89.                 //根据typeId来寻找对应的type
  90.                 Type type = typeDao.getById(typeId);
  91.                 //设置type属性
  92.                 book.setType(type);
  93.             }
  94.         } catch (SQLException throwables) {
  95.             throwables.printStackTrace();
  96.         }
  97.         return books;
  98.     }
  99.     public Book getByName(String bookName) {
  100.         Book book = null;
  101.         try {
  102.             book = bookDao.getByName(bookName);
  103.         } catch (SQLException throwables) {
  104.             throwables.printStackTrace();
  105.         }
  106.         return book;
  107.     }
  108.     public Book getById(long id) {
  109.         Book book = null;
  110.         TypeDao typeDao = new TypeDao();
  111.         try {
  112.             book = bookDao.getById(id);
  113.             long TypeId =  book.getTypeId();
  114.             Type type = typeDao.getById(TypeId);
  115.             book.setType(type);
  116.         } catch (SQLException throwables) {
  117.             throwables.printStackTrace();
  118.         }
  119.         return book;
  120.     }
  121.     /**
  122.      * 由行数算页数
  123.      * @return
  124.      */
  125.     public int getPageCount(int pageSize) {
  126.         int pagecount = 0;
  127.         try {
  128.             //1.获取行数
  129.             int rowcount = bookDao.getCount();
  130.             //2.根据行数得到页数-,每页多少条
  131.             pagecount = (rowcount - 1) / pageSize + 1;
  132.         } catch (SQLException throwables) {
  133.             throwables.printStackTrace();
  134.         }
  135.         return pagecount;
  136.     }
  137. }
复制代码
书籍的dao层
  1. public class BookDao {
  2.     QueryRunner runner = new QueryRunner();
  3.     /**
  4.      * 根据类型查询对应的书籍信息
  5.      *
  6.      * @param typeId
  7.      * @return
  8.      * @throws SQLException
  9.      */
  10.     public List<Book> getBooksByTypeId(long typeId) throws SQLException {
  11.         Connection conn = DBHelper.getConnection();
  12.         String sql = "select * from book where typeId = ?";
  13.         List<Book> books = runner.query(conn, sql, new BeanListHandler<Book>(Book.class), typeId);
  14.         DBHelper.close(conn);
  15.         return books;
  16.     }
  17.     /**
  18.      * 添加
  19.      *
  20.      * @return
  21.      */
  22.     public int add(long typeId, String name, Double price, String desc, String pic, String publish, String author, long stock, String address) throws SQLException {
  23.         Connection conn = DBHelper.getConnection();
  24.         String sql = "insert into book(typeId,`name`,price,`desc`,pic,publish,author,stock,address) values(?,?,?,?,?,?,?,?,?)";
  25.         int count = runner.update(conn, sql, typeId, name, price, desc, pic, publish, author, stock, address);
  26.         DBHelper.close(conn);
  27.         return count;
  28.     }
  29.     public int modify(long id, long typeId, String name, Double price, String desc, String pic, String publish, String author, long stock, String address) throws SQLException {
  30.         Connection conn = DBHelper.getConnection();
  31.         String sql = "update book set typeId=?,`name`=?,price=?,`desc`=?,pic=?,publish=?,author=?,stock=?,address=? where id=?";
  32.         int count = runner.update(conn, sql, typeId, name, price, desc, pic, publish, author, stock, address, id);
  33.         DBHelper.close(conn);
  34.         return count;
  35.     }
  36.     public int remove(long id) throws SQLException {
  37.         Connection conn = DBHelper.getConnection();
  38.         String sql = "delete from book where id = ?";
  39.         int count = runner.update(conn, sql, id);
  40.         DBHelper.close(conn);
  41.         return count;
  42.     }
  43.     /**
  44.      * 分页查询
  45.      * @param pageIndex 第几页开始
  46.      * @param pageSize 每一页有多少行
  47.      * @return 当前页信息
  48.      * @throws SQLException
  49.      */
  50.     public List<Book> getByPage(int pageIndex, int pageSize) throws SQLException {
  51.         Connection conn = DBHelper.getConnection();
  52.         String sql = "select * from book limit ?,?";
  53.         int offset = (pageIndex - 1) * pageSize;
  54.         List<Book> books= runner.query(conn, sql, new BeanListHandler<Book>(Book.class), offset, pageSize);
  55.         DBHelper.close(conn);
  56.         return books;
  57.     }
  58.     public Book getById(long id) throws SQLException {
  59.         Connection conn = DBHelper.getConnection();
  60.         String sql = "select * from book where id = ?";
  61.         Book book = runner.query(conn, sql, new BeanHandler<Book>(Book.class), id);
  62.         DBHelper.close(conn);
  63.         return book;
  64.     }
  65.     /**
  66.      * 根据书籍名字查Book对象
  67.      * @param bookName
  68.      * @return
  69.      * @throws SQLException
  70.      */
  71.     public Book getByName(String bookName) throws SQLException {
  72.         Connection conn = DBHelper.getConnection();
  73.         String sql = "select * from book where name = ?";
  74.         Book book = runner.query(conn, sql, new BeanHandler<Book>(Book.class), bookName);
  75.         DBHelper.close(conn);
  76.         return book;
  77.     }
  78.     /**
  79.      * 获取书籍数量
  80.      * @return
  81.      * @throws SQLException
  82.      */
  83.     public int getCount() throws SQLException {
  84.         Connection conn = DBHelper.getConnection();
  85.         String sql = "select count(id) from book";
  86.         Object data = runner.query(conn, sql, new ScalarHandler<>());
  87.         int count = (int)(long)data;
  88.         return count;
  89.     }
  90.     /**
  91.      * 修改书籍数量
  92.      * @param id
  93.      * @param amount 大于0,加一本---小于0,减一本
  94.      * @return
  95.      * @throws SQLException
  96.      */
  97.     public int modify(long id, int amount) throws SQLException {
  98.         Connection conn = DBHelper.getConnection();
  99.         String sql = "update book set stock=stock + ? where id=?";
  100.         int count = runner.update(conn, sql,amount, id);
  101.         DBHelper.close(conn);
  102.         return count;
  103.     }
  104.     public static void main(String[] args) {
  105.         try {
  106.             Book book = new BookDao().getById(2);
  107.             System.out.println(book);
  108.         } catch (SQLException throwables) {
  109.             throwables.printStackTrace();
  110.         }
  111.     }
  112. }
  113. /**
  114. * dao层只负责与数据库相关的基本工作
  115. * biz层负责业务的事情
  116. */
复制代码
总结

由于源码太多了,无法全部发出来,我已经把它上传了大家可以下载用来学习。
下载地址:图书管理系统
大家对源码有什么疑问也可以私聊我,我帮你解决!

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

十念

金牌会员
这个人很懒什么都没写!

标签云

快速回复 返回顶部 返回列表