Java—简单的图书管理系统

简单的图书管理系统
通过数据源和DAO对象访问数据库。其中JavaBeans实现模型,访问数据库,Servlet实现控制器,JSP页面实现视图。
• 模型包括2个JavaBean:BookBean用于存放图书信息,BookDAO用于访问数据库。
• 控制器包括2个Servlet:BookQueryServlet根据请求参数查询图书信息、BookInsertServlet用来向数据库中插入数据。
• 视图包括4个JSP页面:bookQuery.jsp显示查询页面、bookInsert.jsp显示插入页面、display.jsp显示查询结果页面和errorPage.jsp显示错误页面。

context.xml配置

<?xml version="1.0" encoding="UTF-8"?><Context><Resourceauth="Container"driverClassName="com.mysql.cj.jdbc.Driver"maxIdle="30"maxTotal="50"maxWaitMillis="-1"name="jdbc/book"username="rotdas"password="dasdash"type="javax.sql.DataSource"url="jdbc:mysql://127.0.0.1:3306/book?serverTimezone=UTC"/>
</Context>

源代码

BookBean代码public class BookBean implements Serializable {private String bookid = null;private String title = null;private String author = null;private String publisher = null;private float price = 0.0F;public BookBean(){}public BookBean(String bookId, String author,String title, String publisher, float price) {this.bookid = bookId;this.title = title;this.author = author;this.publisher = publisher;this.price = price;}public String getBookid() { return this.bookid; }public String getTitle() { return title; }public String getAuthor() { return this.author; }public float getPrice() { return price; }public String getPublisher () { return publisher; }public void setBookid(String bookid){ this.bookid=bookid; }public void setTitle(String title){this.title=title; }public void setAuthor(String author){ this. author = author; }public void setPrice(float price){this.price=price; }public void setPublisher (String publisher){ this.publisher = publisher;}
}
BookDAO代码public class BookDAO{private static InitialContext context= null;private DataSource dataSource = null;public BookDAO(){try{if(context == null){context = new InitialContext();}dataSource = (DataSource)context.lookup("java:comp/env/jdbc/book");}catch(NamingException e2){}}// 根据书号查询图书信息public BookBean searchBook(String bookid){Connection conn = null;PreparedStatement pstmt = null;ResultSet rst = null;BookBean book = new BookBean();try{conn = dataSource.getConnection();pstmt = conn.prepareStatement("SELECT * FROM books WHERE bookid=?");pstmt.setString(1,bookid);rst = pstmt.executeQuery();if(rst.next()){book.setBookid(rst.getString("bookid"));book.setTitle(rst.getString("title"));book.setAuthor(rst.getString("author"));book.setPublisher(rst.getString("publisher"));book.setPrice(rst.getFloat("price"));return book;}else{return null;}}catch(SQLException se){se.printStackTrace();return null;}finally{try{if(conn != null){conn.close();}}catch(SQLException se){}}}// 插入一本图书记录public boolean insertBook(BookBean book){Connection conn = null;PreparedStatement pstmt = null;try{conn = dataSource.getConnection();pstmt = conn.prepareStatement("INSERT INTO books VALUES(?,?,?,?,?)");pstmt.setString(1,book.getBookid());pstmt.setString(2,book.getTitle());pstmt.setString(3,book.getAuthor());pstmt.setString(4,book.getPublisher());pstmt.setFloat(5,book.getPrice());pstmt.executeUpdate();pstmt.close();return true;}catch(SQLException se){se.printStackTrace();return false;}finally{try{if(conn != null){conn.close();}}catch(SQLException se){ }}}
}
BookInsertServlet代码
public class BookInsertServlet extends HttpServlet {public void doPost(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException {request.setCharacterEncoding("gb2312");String message = null;BookBean book = new BookBean(request.getParameter("bookid"),request.getParameter("title"),request.getParameter("author"),request.getParameter("publisher"),Float.parseFloat(request.getParameter("price")));BookDAO bookdao = new BookDAO();boolean success = bookdao.insertBook(book);if(success){message = "成功插入一条记录!";}else{message = "插入记录错误!";}request.setAttribute("result",message);RequestDispatcher view = request.getRequestDispatcher("/bookInsert.jsp");view.forward(request, response);}
}
public class BookQueryServlet extends HttpServlet {public void doPost(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException {String bookid = request.getParameter("bookid");BookDAO bookdao = new BookDAO();BookBean book = bookdao.searchBook(bookid);if(book!=null){request.getSession().setAttribute("book", book);RequestDispatcher view = request.getRequestDispatcher("/display.jsp");view.forward(request, response);}else{RequestDispatcher view = request.getRequestDispatcher("/errorPage.jsp");view.forward(request, response);}}
}bookInsert.jsp代码
<%@ page contentType="text/html; charset=gb2312" %>
<html><head> <title>Book Insert</title>
</head>
<body>
<h3>请输入图书信息:</h3>
<% if(request.getAttribute("result")!=null)out.print(request.getAttribute("result"));
%>
<form action = "bookinsert.do" method = "post"><table><tr><td>书号</td> <td><input type="text" name="bookid" ></td></tr><tr><td>书名</td><td><input type="text" name="title"></td></tr><tr><td>作者</td><td><input type="text" name="author" ></td></tr><tr><td>出版社</td><td><input type="text" name="publisher" ></td></tr><tr><td>单价</td><td><input type="text" name="price" ></td></tr><tr><td><input type="submit" value="确定" ></td><td><input type="reset" value="重置" ></td></tr></table>
</form>
</body></html>bookQuery.jsp代码
<%@ page contentType="text/html; charset=gb2312" %>
<html><head> <title>Book Query</title>
</head>
<body>
请输入一个书号:<br>
<form action="bookquery.do" method = "post"><input type="text" name="bookid"><br><input type="submit" value="提交">
</form>
</body>
</html>display.jsp 代码
<%@ page contentType="text/html;charset=gb2312"%>
<jsp:useBean id="book" class="com.BookBean" scope="session"/>
<html><body>
书号:<jsp:getProperty name="book" property="bookid"/><br><br>
书名:<jsp:getProperty name="book" property="title"/><br><br>
作者:<jsp:getProperty name="book" property="author"/><br><br>
出版社:<jsp:getProperty name="book" property="publisher"/><br><br>
价格:<jsp:getProperty name="book" property="price"/><br><br>
</body></html>erorpage.jsp代码
<%@ page contentType="text/html;charset=gb2312"%>
<html><body>
对不起,您查的图书不存在!
</body></html>

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/392021.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

成功的秘诀是什么_学习编码的10个成功秘诀

成功的秘诀是什么This post was originally published on Coder-Coder.com.该帖子最初发布在Coder-Coder.com上 。 If you’re teaching yourself how to code, you may have more questions than answers when you’re starting out.如果您正在教自己如何编码&#xff0c;那么…

ZJUT 地下迷宫 (高斯求期望)

http://cpp.zjut.edu.cn/ShowProblem.aspx?ShowID1423 设dp[i]表示在i点时到达终点要走的期望步数&#xff0c;那么dp[i] ∑1/m*dp[j] 1&#xff0c;j是与i相连的点&#xff0c;m是与i相邻的点数。建立方程组求解。重要的一点是先推断DK到达不了的点。须要bfs预处理一下进行…

html收款页面模板,订单收款.html

&#xfeff;订单收款$axure.utils.getTransparentGifPath function() { return resources/images/transparent.gif; };$axure.utils.getOtherPath function() { return resources/Other.html; };$axure.utils.getReloadPath function() { return resources/reload.html; };…

pandas之时间数据

1.时间戳Timestamp() 参数可以为各种形式的时间&#xff0c;Timestamp()会将其转换为时间。 time1 pd.Timestamp(2019/7/13) time2 pd.Timestamp(13/7/2019 13:05) time3 - pd.Timestamp(2019-7-13) time4 pd.Timestamp(2019 7 13 13:05) time5 pd.Timestamp(2019 July 13 …

scikit keras_Scikit学习,TensorFlow,PyTorch,Keras…但是天秤座呢?

scikit kerasWelcome all! In the first episode of this series, I investigated the four most known machine learning frameworks and discussed which of these you should learn depending on your needs and goals.w ^迎阅读所有&#xff01; 在本系列的第一集中 &#…

程序员如何学习更好的知识_如何保持学习并成为更好的程序员

程序员如何学习更好的知识by Kevin Gardner凯文加德纳(Kevin Gardner) 如何保持学习并成为更好的程序员 (How to keep learning and become a better coder) Coding has come a long way since the days of Robert Taylor and ARPANET and Sir Tim Berners-Lee and CERN — an…

Educational Codeforces Round 25 C. Multi-judge Solving

题目链接&#xff1a;http://codeforces.com/contest/825/problem/C C. Multi-judge Solving time limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard outputMakes solves problems on Decoforces and lots of other different onli…

Java—stream以及集合框架使用

1) 编写Student类&#xff0c;主要属性包括学号、姓名、性别、班级 2) 编写Score类&#xff0c;主要属性包括&#xff1a;学号、课程名、分数 3) 模拟期末考试的成绩统计应用场景&#xff0c;要求 (1) 所有学生名单及对应科目成绩已经初始化在数组中 (2) 要求输出每门课程的所有…

山东省2021年高考成绩查询平台6,山东2021年高考成绩改为6月26日前公布

6月11日&#xff0c;山东省教育厅举行2021年第一次高考新闻发布会&#xff0c;介绍2021年高考基本情况、评卷安排、成绩公布等相关工作。山东省教育招生考试院新闻发言人、普招处处长李春光介绍&#xff0c;根据近期国家有关工作要求和强基计划招生工作需要&#xff0c;原定于6…

如何在vuejs里禁用eslint语法检查工具

eslint好是好&#xff0c;可要求很苛刻&#xff0c;对于我这种写代码很糙的媛。。。。。。 搜索的时候有的说加入 /* eslint-disabled */&#xff08;有用&#xff0c;但只是部分代码享受此待遇&#xff09; 还有说删除.eslintrc.js里包含eslint关键字的块&#xff0c;a---o---…

数据结构两个月学完_这是我作为数据科学家两年来所学到的

数据结构两个月学完It has been 2 years ever since I started my data science journey. Boy, that was one heck of a roller coaster ride!自从我开始数据科学之旅以来已经有两年了 。 男孩 &#xff0c;那可真是坐过山车&#xff01; There were many highs and lows, and…

leetcode 888. 公平的糖果棒交换(set)

爱丽丝和鲍勃有不同大小的糖果棒&#xff1a;A[i] 是爱丽丝拥有的第 i 根糖果棒的大小&#xff0c;B[j] 是鲍勃拥有的第 j 根糖果棒的大小。 因为他们是朋友&#xff0c;所以他们想交换一根糖果棒&#xff0c;这样交换后&#xff0c;他们都有相同的糖果总量。&#xff08;一个…

如何使用JavaScript检查输入是否为空

by Zell Liew由Zell Liew 如何使用JavaScript检查输入是否为空 (How to check if an input is empty with JavaScript) Last week, I shared how to check if an input is empty with CSS. Today, let’s talk about the same thing, but with JavaScript.上周&#xff0c;我分…

数学哲学与科学哲学和计算机科学的能动作用,数学哲学与科学哲学和计算机科学的能动作用...

3 数学哲学与计算机科学的能动作用数学哲学对于计算机科学的影响主要表现于以下的事实&#xff1a;一些源于数学哲学(数学基础研究)的概念和理论在计算机科学的历史发展中发挥了十分重要的作用。例如&#xff0c;在此可以首先提及(一阶)谓词演算理论&#xff1a;这是由弗雷格(…

AngularDart4.0 指南- 表单

2019独角兽企业重金招聘Python工程师标准>>> 表单是商业应用程序的主流。您可以使用表单登录&#xff0c;提交帮助请求&#xff0c;下订单&#xff0c;预订航班&#xff0c;安排会议&#xff0c;并执行无数其他数据录入任务。 在开发表单时&#xff0c;创建一个数据…

(转载)分享常用的GoLang包工具

分享常用的GoLang包工具 包名 链接地址 备注 Machinery异步队列 https://github.com/RichardKnop/machinery Mqtt通信 github.com/eclipse/paho.mqtt.golang go文档http://www.eclipse.org/paho/clients/golang/ 微信开发 https://github.com/chanxuehong/wechat fasthttp包 gi…

迈向数据科学的第一步:在Python中支持向量回归

什么是支持向量回归&#xff1f; (What is Support Vector Regression?) Support vector regression is a special kind of regression that gives you some sort of buffer or flexibility with the error. How does it do that ? I’m going to explain it to you in simpl…

js 触发LinkButton点击事件,执行后台方法

页面 <asp:LinkButton ID"lbtButton" runat"server" CssClass"lbtButton" Font-Underline"false" OnClick"lbtButton_Click"> js function clickButton(filePath, fileName){ __doPostBack(lbtButton, ); } 当执行该…

vue 响应式ui_如何在Vue.js中设置响应式UI搜索

vue 响应式uiAre you thinking of building something awesome with one of the popular modern frameworks out there right now, but don’t know how to get started?您是否正在考虑使用当前流行的现代框架之一来构建出色的东西&#xff0c;但不知道如何入门&#xff1f; …

兰州交通大学计算机科学与技术学院,兰州交通大学

信息与计算科学专业依托数学和计算机科学与技术两个一级学科硕士学位授予点&#xff0c;运筹学与控制论、计算机科学与技术两个省级重点学科&#xff0c;培养理工融合、学科交叉的创新性人才。自2008年以来&#xff0c;承担国家自然科学基金10余项&#xff0c;发表SCI收录杂志论…