使用数据库连接池C3P0及JDBC技术,并结合JSP、Servlet以及Filter等JavaWeb技术实现数据库中的学生信息数据实现增加、修改、删除、查询等操作。 【需求说明】 (1)学生信息包括:学号、姓名、性别、出生日期、所在院系、爱好、个人简介等信息; (2)分别设计: addStu.jsp、editStu.jsp和stuList.jsp用于实现用户交互; (3)分别设计:SaveStudentServlet、EditStudentServlet、DelStudentServlet和SearchStudentServlet四个Servlet程序,用于实现对学生信息数据的增加、修改、删除、查询等功能。 (4)Filter过滤器解决POST提交方式时的中文乱码问

时间: 2023-07-04 18:06:28 浏览: 270
ZIP

使用java语言编写的数据库连接池,实现数据库与jsp文件的连接.zip

题。 这是一个比较全面的JavaWeb应用,需要涉及到数据库操作、JSP页面、Servlet程序以及Filter过滤器等多个方面。下面我会分别介绍一下各个方面的实现。 一、数据库连接池C3P0及JDBC技术 1.1 数据库准备 首先需要准备好一个数据库,在本例中我们使用MySQL数据库。创建一个名为student的数据库,并在该数据库中创建一个名为stu_info的表,包含学号、姓名、性别、出生日期、所在院系、爱好、个人简介等信息。 1.2 C3P0连接池配置 使用C3P0连接池可以有效地提高数据库连接的效率和稳定性。在项目中,我们需要在web.xml文件中配置一个参数,用来指定C3P0配置文件的路径。 ```xml <context-param> <param-name>configLocation</param-name> <param-value>/WEB-INF/c3p0-config.xml</param-value> </context-param> ``` 然后在项目的WEB-INF目录下创建一个名为c3p0-config.xml的文件,并在其中进行连接池的配置。 ```xml <?xml version="1.0" encoding="UTF-8"?> <c3p0-config> <default-config> <property name="jdbcUrl">jdbc:mysql://localhost:3306/student</property> <property name="driverClass">com.mysql.jdbc.Driver</property> <property name="user">root</property> <property name="password">123456</property> <property name="maxPoolSize">50</property> <property name="minPoolSize">5</property> <property name="initialPoolSize">10</property> <property name="maxIdleTime">1800</property> <property name="acquireIncrement">3</property> <property name="idleConnectionTestPeriod">60</property> <property name="checkoutTimeout">10000</property> </default-config> </c3p0-config> ``` 1.3 JDBC编程 在JavaWeb应用中,我们需要使用JDBC技术来连接数据库并进行数据的增删改查。在本例中,我们可以使用以下代码来连接数据库并查询学生信息。 ```java public class StudentDao { private ComboPooledDataSource dataSource; public StudentDao() throws Exception { dataSource = new ComboPooledDataSource(); } // 获取学生信息 public List<Student> getStudents() { Connection conn = null; PreparedStatement stmt = null; ResultSet rs = null; List<Student> students = new ArrayList<Student>(); try { conn = dataSource.getConnection(); String sql = "SELECT * FROM stu_info"; stmt = conn.prepareStatement(sql); rs = stmt.executeQuery(); while (rs.next()) { Student student = new Student(); student.setSno(rs.getString("sno")); student.setName(rs.getString("name")); student.setSex(rs.getString("sex")); student.setBirthday(rs.getDate("birthday")); student.setDepartment(rs.getString("department")); student.setHobby(rs.getString("hobby")); student.setIntro(rs.getString("intro")); students.add(student); } } catch (SQLException e) { e.printStackTrace(); } finally { try { if (rs != null) rs.close(); if (stmt != null) stmt.close(); if (conn != null) conn.close(); } catch (SQLException e) { e.printStackTrace(); } } return students; } } ``` 二、JSP页面 在JavaWeb应用中,我们通常需要使用JSP页面来实现前端页面的展示和用户交互。在本例中,我们需要设计三个JSP页面,分别是addStu.jsp、editStu.jsp和stuList.jsp。其中,addStu.jsp页面用来添加学生信息,editStu.jsp页面用来编辑学生信息,stuList.jsp页面用来展示学生信息列表。 addStu.jsp页面代码: ```html <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>添加学生信息</title> </head> <body> <h1>添加学生信息</h1> <form action="${pageContext.request.contextPath}/saveStudent" method="post"> <table> <tr> <td>学号:</td> <td><input type="text" name="sno"></td> </tr> <tr> <td>姓名:</td> <td><input type="text" name="name"></td> </tr> <tr> <td>性别:</td> <td> <input type="radio" name="sex" value="男">男 <input type="radio" name="sex" value="女">女 </td> </tr> <tr> <td>出生日期:</td> <td><input type="date" name="birthday"></td> </tr> <tr> <td>所在院系:</td> <td><input type="text" name="department"></td> </tr> <tr> <td>爱好:</td> <td><input type="text" name="hobby"></td> </tr> <tr> <td>个人简介:</td> <td><textarea name="intro"></textarea></td> </tr> <tr> <td colspan="2"> <input type="submit" value="保存"> <input type="reset" value="重置"> </td> </tr> </table> </form> </body> </html> ``` editStu.jsp页面代码: ```html <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>编辑学生信息</title> </head> <body> <h1>编辑学生信息</h1> <form action="${pageContext.request.contextPath}/editStudent" method="post"> <table> <tr> <td>学号:</td> <td><input type="text" name="sno" value="${student.sno}" readonly></td> </tr> <tr> <td>姓名:</td> <td><input type="text" name="name" value="${student.name}"></td> </tr> <tr> <td>性别:</td> <td> <input type="radio" name="sex" value="男" ${student.sex == '男' ? 'checked' : ''}>男 <input type="radio" name="sex" value="女" ${student.sex == '女' ? 'checked' : ''}>女 </td> </tr> <tr> <td>出生日期:</td> <td><input type="date" name="birthday" value="${student.birthday}"></td> </tr> <tr> <td>所在院系:</td> <td><input type="text" name="department" value="${student.department}"></td> </tr> <tr> <td>爱好:</td> <td><input type="text" name="hobby" value="${student.hobby}"></td> </tr> <tr> <td>个人简介:</td> <td><textarea name="intro">${student.intro}</textarea></td> </tr> <tr> <td colspan="2"> <input type="submit" value="保存"> <input type="reset" value="重置"> </td> </tr> </table> </form> </body> </html> ``` stuList.jsp页面代码: ```html <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>学生信息列表</title> </head> <body> <h1>学生信息列表</h1> <table border="1"> <tr> <th>学号</th> <th>姓名</th> <th>性别</th> <th>出生日期</th> <th>所在院系</th> <th>爱好</th> <th>个人简介</th> <th>操作</th> </tr> <c:forEach items="${students}" var="student"> <tr> <td>${student.sno}</td> <td>${student.name}</td> <td>${student.sex}</td> <td>${student.birthday}</td> <td>${student.department}</td> <td>${student.hobby}</td> <td>${student.intro}</td> <td> <a href="${pageContext.request.contextPath}/editStu?sno=${student.sno}">编辑</a> <a href="${pageContext.request.contextPath}/delStudent?sno=${student.sno}">删除</a> </td> </tr> </c:forEach> </table> <br> <a href="${pageContext.request.contextPath}/addStu.jsp">添加学生信息</a> </body> </html> ``` 三、Servlet程序 在JavaWeb应用中,我们需要使用Servlet程序来处理HTTP请求和响应。在本例中,我们需要设计四个Servlet程序,分别是SaveStudentServlet、EditStudentServlet、DelStudentServlet和SearchStudentServlet。 SaveStudentServlet用来保存学生信息,EditStudentServlet用来编辑学生信息,DelStudentServlet用来删除学生信息,SearchStudentServlet用来查询学生信息。 SaveStudentServlet代码: ```java public class SaveStudentServlet extends HttpServlet { private static final long serialVersionUID = 1L; private StudentDao studentDao; public SaveStudentServlet() { super(); } public void init() throws ServletException { try { studentDao = new StudentDao(); } catch (Exception e) { e.printStackTrace(); } } protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { request.setCharacterEncoding("UTF-8"); String sno = request.getParameter("sno"); String name = request.getParameter("name"); String sex = request.getParameter("sex"); String birthday = request.getParameter("birthday"); String department = request.getParameter("department"); String hobby = request.getParameter("hobby"); String intro = request.getParameter("intro"); Student student = new Student(); student.setSno(sno); student.setName(name); student.setSex(sex); student.setBirthday(Date.valueOf(birthday)); student.setDepartment(department); student.setHobby(hobby); student.setIntro(intro); try { studentDao.addStudent(student); } catch (Exception e) { e.printStackTrace(); } response.sendRedirect(request.getContextPath() + "/stuList"); } } ``` EditStudentServlet代码: ```java public class EditStudentServlet extends HttpServlet { private static final long serialVersionUID = 1L; private StudentDao studentDao; public EditStudentServlet() { super(); } public void init() throws ServletException { try { studentDao = new StudentDao(); } catch (Exception e) { e.printStackTrace(); } } protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { String sno = request.getParameter("sno"); Student student = null; try { student = studentDao.getStudent(sno); } catch (Exception e) { e.printStackTrace(); } request.setAttribute("student", student); request.getRequestDispatcher("/editStu.jsp").forward(request, response); } protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { request.setCharacterEncoding("UTF-8"); String sno = request.getParameter("sno"); String name = request.getParameter("name"); String sex = request.getParameter("sex"); String birthday = request.getParameter("birthday"); String department = request.getParameter("department"); String hobby = request.getParameter("hobby"); String intro = request.getParameter("intro"); Student student = new Student(); student.setSno(sno); student.setName(name); student.setSex(sex); student.setBirthday(Date.valueOf(birthday)); student.setDepartment(department); student.setHobby(hobby); student.setIntro(intro); try { studentDao.updateStudent(student); } catch (Exception e) { e.printStackTrace(); } response.sendRedirect(request.getContextPath() + "/stuList"); } } ``` DelStudentServlet代码: ```java public class DelStudentServlet extends HttpServlet { private static final long serialVersionUID = 1L; private StudentDao studentDao; public DelStudentServlet() { super(); } public void init() throws ServletException { try { studentDao = new StudentDao(); } catch (Exception e) { e.printStackTrace(); } } protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { String sno = request.getParameter("sno"); try { studentDao.delStudent(sno); } catch (Exception e) { e.printStackTrace(); } response.sendRedirect(request.getContextPath() + "/stuList"); } } ``` SearchStudentServlet代码: ```java public class SearchStudentServlet extends HttpServlet { private static final long serialVersionUID = 1L; private StudentDao studentDao; public SearchStudentServlet() { super(); } public void init() throws ServletException { try { studentDao = new StudentDao(); } catch (Exception e) { e.printStackTrace(); } } protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { request.setCharacterEncoding("UTF-8"); response.setContentType("text/html;charset=UTF-8"); String keyword = request.getParameter("keyword"); List<Student> students = null; try { students = studentDao.searchStudent(keyword); } catch (Exception e) { e.printStackTrace(); } request.setAttribute("students", students); request.getRequestDispatcher("/stuList.jsp").forward(request, response); } } ``` 四、Filter过滤器 在JavaWeb应用中,我们需要使用Filter过滤器来对HTTP请求和响应进行过滤处理。在本例中,我们需要使用Filter过滤器来解决POST提交方式时的中文乱码问题。 Filter过滤器代码: ```java public class EncodingFilter implements Filter { private String encoding = "UTF-8"; public void doFilter(ServletRequest request, ServletResponse response, FilterChain filterChain) throws IOException, ServletException { request.setCharacterEncoding(encoding); response.setCharacterEncoding(encoding); filterChain.doFilter(request, response); } public void init(FilterConfig filterConfig) throws ServletException { String encodingParam = filterConfig.getInitParameter("encoding"); if (encodingParam != null) { encoding = encodingParam; } } public void destroy() { } } ``` 在web.xml文件中配置Filter过滤器: ```xml <filter> <filter-name>encodingFilter</filter-name> <filter-class>com.example.EncodingFilter</filter-class> <init-param> <param-name>encoding</param-name> <param-value>UTF-8</param-value> </init-param> </filter> <filter-mapping> <filter-name>encodingFilter</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> ``` 以上就是本例中JavaWeb应用的实现,包括C3P0连接池的配置、JSP页面的设计、Servlet程序的编写以及Filter过滤器的使用。
阅读全文

相关推荐

最新推荐

recommend-type

javaweb中mysql数据库连接步骤方法及其实例

这一步使得Java程序能够识别并使用MySQL提供的数据库连接接口。例如:`Class.forName("com.mysql.jdbc.Driver")`。 3. **建立连接**:使用`DriverManager.getConnection()`方法创建数据库连接。需要提供数据库URL、...
recommend-type

JavaWeb 中Cookie实现记住密码的功能示例

在JavaWeb开发中,Cookie是一种常见的技术,用于在客户端(用户的浏览器)和服务器之间传递信息。这个技术在实现“记住密码”或“自动登录”功能时尤其有用。下面我们将深入探讨Cookie的工作原理、优势以及如何在...
recommend-type

JavaWeb JDBC + MySql 通讯录实现简单的增删改查功能案例详解

在JavaWeb应用中,JDBC(Java Database Connectivity)是用于与关系型数据库交互的重要技术,而MySQL是一款广泛使用的开源数据库管理系统。本案例将探讨如何利用JavaWeb中的JDBC与MySQL数据库来实现一个简单的通讯录...
recommend-type

JavaWeb使用Cookie模拟实现自动登录功能(不需用户名和密码)

总之,JavaWeb中利用Cookie实现自动登录的关键在于创建和管理Cookie,以及在用户访问时正确读取和验证Cookie。这个简单示例展示了基本的流程,但在实际开发中还需要考虑更多的安全性和用户体验因素。希望通过这个...
recommend-type

毕设和企业适用springboot企业健康管理平台类及活动管理平台源码+论文+视频.zip

毕设和企业适用springboot企业健康管理平台类及活动管理平台源码+论文+视频.zip
recommend-type

GitHub图片浏览插件:直观展示代码中的图像

资源摘要信息: "ImagesOnGitHub-crx插件" 知识点概述: 1. 插件功能与用途 2. 插件使用环境与限制 3. 插件的工作原理 4. 插件的用户交互设计 5. 插件的图标和版权问题 6. 插件的兼容性 1. 插件功能与用途 插件"ImagesOnGitHub-crx"设计用于增强GitHub这一开源代码托管平台的用户体验。在GitHub上,用户可以浏览众多的代码仓库和项目,但GitHub默认情况下在浏览代码仓库时,并不直接显示图像文件内容,而是提供一个“查看原始文件”的链接。这使得用户体验受到一定限制,特别是对于那些希望直接在网页上预览图像的用户来说不够方便。该插件正是为了解决这一问题,允许用户在浏览GitHub上的图像文件时,无需点击链接即可直接在当前页面查看图像,从而提供更为流畅和直观的浏览体验。 2. 插件使用环境与限制 该插件是专为使用GitHub的用户提供便利的。它能够在GitHub的代码仓库页面上发挥作用,当用户访问的是图像文件页面时。值得注意的是,该插件目前只支持".png"格式的图像文件,对于其他格式如.jpg、.gif等并不支持。用户在使用前需了解这一限制,以免在期望查看其他格式文件时遇到不便。 3. 插件的工作原理 "ImagesOnGitHub-crx"插件的工作原理主要依赖于浏览器的扩展机制。插件安装后,会监控用户在GitHub上的操作。当用户访问到图像文件对应的页面时,插件会通过JavaScript检测页面中的图像文件类型,并判断是否为支持的.png格式。如果是,它会在浏览器地址栏的图标位置上显示一个小octocat图标,用户点击这个图标即可触发插件功能,直接在当前页面上查看到图像。这一功能的实现,使得用户无需离开当前页面即可预览图像内容。 4. 插件的用户交互设计 插件的用户交互设计体现了用户体验的重要性。插件通过在地址栏中增加一个小octocat图标来提示用户当前页面有图像文件可用,这是一种直观的视觉提示。用户通过简单的点击操作即可触发查看图像的功能,流程简单直观,减少了用户的学习成本和操作步骤。 5. 插件的图标和版权问题 由于插件设计者在制作图标方面经验不足,因此暂时借用了GitHub的标志作为插件图标。插件的作者明确表示,如果存在任何错误或版权问题,将会进行更改。这体现了开发者对知识产权尊重的态度,同时也提醒了其他开发者在使用或设计相关图标时应当考虑到版权法律的约束,避免侵犯他人的知识产权。 6. 插件的兼容性 插件的兼容性是评估其可用性的重要标准之一。由于插件是为Chrome浏览器的用户所设计,因此它使用了Chrome扩展程序的标准格式,即.crx文件。用户需要通过浏览器的扩展程序管理界面进行安装。尽管目前插件仅支持.png图像格式,但对于希望在GitHub上浏览.png图像文件的用户来说,已经提供了非常实用的功能。未来,若开发者计划拓展插件支持的文件格式或适用于其他浏览器,则需要考虑到对现有代码的扩展和兼容性测试。 总结: "ImagesOnGitHub-crx"插件通过创新的用户体验设计,解决了GitHub在浏览图像文件时的一些局限性,使得图像浏览更加直观和便捷。尽管目前该插件存在一些限制,如仅支持.png格式和仅在Chrome浏览器中可用,但它为用户和开发者提供了良好的思路和实践。对于希望提高效率和增强功能的用户来说,这类工具扩展了GitHub的实用性,是开发人员工具箱中的一个有益补充。
recommend-type

管理建模和仿真的文件

管理Boualem Benatallah引用此版本:布阿利姆·贝纳塔拉。管理建模和仿真。约瑟夫-傅立叶大学-格勒诺布尔第一大学,1996年。法语。NNT:电话:00345357HAL ID:电话:00345357https://theses.hal.science/tel-003453572008年12月9日提交HAL是一个多学科的开放存取档案馆,用于存放和传播科学研究论文,无论它们是否被公开。论文可以来自法国或国外的教学和研究机构,也可以来自公共或私人研究中心。L’archive ouverte pluridisciplinaire
recommend-type

【OPPO手机故障诊断专家】:工程指令快速定位与解决

![【OPPO手机故障诊断专家】:工程指令快速定位与解决](https://www.consumerelectronicstestdevelopment.com/media/2hlomnxy/oppo.jpg?anchor=center&mode=crop&width=1002&height=564&bgcolor=White&rnd=132773815380200000) # 摘要 本文综述了OPPO手机故障诊断的技术细节,涵盖了工程指令的基础理论、实践应用、高级技巧以及未来发展方向。首先介绍了工程指令的定义、分类、执行环境及其与手机系统交互的重要性。随后,深入探讨了工程指令在初步故障诊断
recommend-type

求[100,900]之间相差为12的素数对(注:要求素数对的两个素数均在该范围内)的个数

求解 [100, 900] 范围内相差为 12 的素数对,首先我们需要确定哪些数在这个区间内是素数。然后筛选出它们成对出现且差值为 12 的情况。 1. 确定素数范围内的素数:我们可以编写一个简单的程序来检查每个数字是否为素数,如果数字大于 1,并且除 2 到其平方根之间的所有整数都不能整除它,那么这个数字就是素数。 2. 遍历并寻找符合条件的素数对:从较大的素数开始向下遍历,找到的第一个素数作为“较大”素数,然后查看比它小 12 的下一个数,如果这个数也是素数,则找到了一对符合条件的素数。 3. 统计素数对的数量:统计在给定范围内找到的这种差距为 12 的素数对的数量。 由于计算素数
recommend-type

Android IPTV项目:直播频道的实时流媒体实现

资源摘要信息:"IPTV:直播IPTV的Android项目是一个基于Android平台的实时流式传输应用。该项目允许用户从M3U8或M3U格式的链接或文件中获取频道信息,并将这些频道以网格或列表的形式展示。用户可以在应用内选择并播放指定的频道。该项目的频道列表是从一个预设的列表中加载的,并且通过解析M3U或M3U8格式的文件来显示频道信息。开发者还计划未来更新中加入Exo播放器以及电子节目单功能,以增强用户体验。此项目使用了多种技术栈,包括Java、Kotlin以及Kotlin Android扩展。" 知识点详细说明: 1. IPTV技术: IPTV(Internet Protocol Television)即通过互联网协议提供的电视服务。它与传统的模拟或数字电视信号传输方式不同,IPTV通过互联网将电视内容以数据包的形式发送给用户。这种服务使得用户可以按需观看电视节目,包括直播频道、视频点播(VOD)、时移电视(Time-shifted TV)等。 2. Android开发: 该项目是针对Android平台的应用程序开发,涉及到使用Android SDK(软件开发工具包)进行应用设计和功能实现。Android应用开发通常使用Java或Kotlin语言,而本项目还特别使用了Kotlin Android扩展(Kotlin-Android)来优化开发流程。 3. 实时流式传输: 实时流式传输是指媒体内容以连续的流形式进行传输的技术。在IPTV应用中,实时流式传输保证了用户能够及时获得频道内容。该项目可能使用了HTTP、RTSP或其他流媒体协议来实现视频流的实时传输。 4. M3U/M3U8文件格式: M3U(Moving Picture Experts Group Audio Layer 3 Uniform Resource Locator)是一种常用于保存播放列表的文件格式。M3U8则是M3U格式的扩展版本,支持UTF-8编码,常用于苹果设备。在本项目中,M3U/M3U8文件被用来存储IPTV频道信息,如频道名称、视频流URL等。 5. Exo播放器: ExoPlayer是谷歌官方提供的一个开源视频播放器,专为Android优化。它支持多种特性,如自定义字幕、HDR视频播放、无缝直播等。ExoPlayer通常用于处理IPTV应用中的视频流媒体播放需求。 6. 电子节目单(EPG): 电子节目单是IPTV应用中一项重要功能,它为用户提供频道的节目指南,包括当前播放的节目以及未来节目的安排。电子节目单一般以网格或列表形式展示,方便用户浏览和搜索节目信息。 7. 开源贡献文化: 该项目提到了欢迎贡献者,表明这是一个开源项目。在开源文化中,开发者社区鼓励用户、开发者贡献代码来改进项目,这是一个共享知识、共同进步的过程。参与者通过贡献代码、报告问题或提供文档帮助等方式参与项目。 8. Kotlin编程语言: Kotlin是一种运行在Java虚拟机上的静态类型编程语言,它与Java完全兼容并可以无缝集成Java代码。Kotlin以其简洁、安全和富有表现力的特点被越来越多的Android开发者采用。在本项目中,使用Kotlin可以简化代码结构,提高开发效率和应用性能。 总结而言,本项目是一个面向Android平台的实时流媒体IPTV应用开发项目,它整合了实时流式传输、M3U/M3U8文件解析、Exo播放器使用、电子节目单功能等关键技术点,并在开源社区中寻求贡献者的参与。通过本项目,开发者可以深入了解如何在Android平台上实现IPTV服务,并学习到使用Kotlin和Java等编程语言进行Android应用开发的相关知识。