JSP三层架构开发学生管理系统源码-dao、entity、service、servlet

表示层:MVC中的视图层和控制器层,前端通常为html css js jsp文件,后端例如Servlet文件,调用业务逻辑层业务逻辑层(Service):接受表示层的请求,先进行逻辑处理,后调用数据逻辑层,(增:查+增)

数据访问层(Dao):直接访问数据库的操作

JSP三层架构开发学生管理系统源码-dao、entity、service、servlet

通过三层架构,将表示层请求传递到数据访问层,数据访问层将结果返回至表示层

具体流程

JSP三层架构开发学生管理系统源码-dao、entity、service、servlet

开发环境:IDEA Mysql  8.0.19   mysql driver:8.0.15  servlet:3.0以上版本
代码结构(正规来说的话service 和 dao 需要接口,为了代码看着方便省略了)

JSP三层架构开发学生管理系统源码-dao、entity、service、servlet

add.jsp

JSP三层架构开发学生管理系统源码-dao、entity、service、servlet

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>add</title>
</head>
<body>
<form action="addStudentServlet" >
学号:<input type="number" name="sno"><br/>
name: <input type="text" name="sname"/><br/>
age: <input type="text" name="sage"/><br/>
address: <input type="text" name="saddress"/><br/>
<input type="submit" value="add"/><br/>
</form>
</body>
</html>

写后端代码前,先将数据封装Java bean(entity包中)

package com.Student.entity;

public class Student {
private int sno;
private String sname;
private int sage;
private String saddress;

public Student(int sno, String sname, int sage, String saddress) {
this.sno = sno;
this.sname = sname;
this.sage = sage;
this.saddress = saddress;
}

public Student(String sname, int sage, String saddress) {
this.sname = sname;
this.sage = sage;
this.saddress = saddress;
}

@Override
public String toString() {
return "Student{" +
"sno=" + sno +
", sname='" + sname + '\'' +
", sage=" + sage +
", saddress='" + saddress + '\'' +
'}';
}

public int getSno() {
return sno;
}

public void setSno(int sno) {
this.sno = sno;
}

public String getSname() {
return sname;
}

public void setSname(String sname) {
this.sname = sname;
}

public int getSage() {
return sage;
}

public void setSage(int sage) {
this.sage = sage;
}

public String getSaddress() {
return saddress;
}

public void setSaddress(String saddress) {
this.saddress = saddress;
}

}

addStudentServlet.java(com.student.servlet包中)

package com.Student.Servlet;

import com.Student.entity.Student;
import com.Student.service.StudentService;

import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.io.PrintWriter;

@WebServlet("/addStudentServlet")
public class addStudentServlet extends HttpServlet {
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {

}

protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {

// response.setCharacterEncoding("utf-8"); // 指定输出到客户端的是编码格式
response.setContentType("text/html;charset=UTF-8"); // 指定浏览器解析数据的时候,使用的编码格式

int no = Integer.parseInt(request.getParameter("sno"));
String name = request.getParameter("sname");
int age = Integer.parseInt(request.getParameter("sage"));
String address = request.getParameter("saddress");
Student student = new Student(no, name, age, address);
StudentService studentService = new StudentService();
boolean result = studentService.addStudent(student);
PrintWriter out = response.getWriter();
if(result){
out.println("add successfully");
}else{
out.println("fail to add");
}
/*if (!result) { //如果增加失败,给request放入一条数据error
request.setAttribute("error", "error");
}
request.getRequestDispatcher("queryAllStudentServlet").forward(request, response);*/
}
}

addStudentService.java(自行匹配放包中)

package com.Student.service;

import com.Student.Dao.StudentDao;
import com.Student.entity.Student;

import java.util.List;

//业务逻辑层:逻辑性的增删改查(增:查+增), 对Dao层进行组装
public class StudentService {
StudentDao studentDao = new StudentDao();
public boolean addStudent(Student student){
if(!studentDao.isExist(student.getSno())){ //此人不存在
studentDao.addStudent(student);
return true;
}else{
System.out.println("此人已存在");
return false;
}
}

public boolean deleteStudent(int sno){
if(studentDao.isExist(sno)){
return studentDao.deleteStudentBySno(sno);
}else{
return false;
}
}

public boolean updateStudentBySno(int sno,Student student){
if(studentDao.isExist(sno)){
return studentDao.updateStudentBySno(sno, student);
}else{
return false;
}
}

//根据学号查询一个学生
public Student queryStudentBySno(int sno){
return studentDao.queryStudentBySno(sno);
}

public List<Student> queryAllStudent(){
return studentDao.queryAllStudent();
}
}

StudentDao.java

package com.Student.Dao;

import com.Student.entity.Student;

import java.sql.*;
import java.util.ArrayList;
import java.util.List;
//数据访问层,原子性的增删改查,不可拆,
public class StudentDao {
private final String url = "jdbc:mysql://localhost/Student";
private final String User = "root";
private final String pwd = "123456";

public boolean isExist(int sno) { //true :此人存在 false : 此人不存在
return queryStudentBySno(sno)==null? false:true;
}

public boolean addStudent(Student student){
Connection connection = null;
PreparedStatement pstmt = null;
try{
Class.forName("com.mysql.jdbc.Driver");
connection = DriverManager.getConnection(url, User, pwd);
System.out.println("The database was connected successfully");
String sql = "insert into student values(?,?,?,?)";
pstmt = connection.prepareStatement(sql);
pstmt.setInt(1,student.getSno());
pstmt.setString(2,student.getSname());
pstmt.setInt(3,student.getSage());
pstmt.setString(4,student.getSaddress());
int count = pstmt.executeUpdate();
System.out.println("count = "+count);
if(count>0){
return true;
}
else
return false;
}catch (ClassNotFoundException e){
e.printStackTrace();
return false;
}catch (SQLException e){
e.printStackTrace();
return false;
} catch (Exception e){
e.printStackTrace();
return false;
}finally {
try{
if(pstmt!=null)pstmt.close();
if(connection!=null)connection.close();
}catch (SQLException e){
e.printStackTrace();
}
}

}
}

JSP三层架构开发学生管理系统源码-dao、entity、service、servlet JSP三层架构开发学生管理系统源码-dao、entity、service、servlet

125jz网原创文章。发布者:江山如画,转载请注明出处:http://www.125jz.com/9551.html

(0)
江山如画的头像江山如画管理团队
上一篇 2021年5月1日 下午5:12
下一篇 2021年5月1日 下午5:39

99%的人还看了以下文章

  • 快来围观!微信小程序开发需要前期准备的信息整理出来了

    一、域名以及服务器 注册一个域名,域名必须进行ssl证书配置 域名进行备案 准备服务器可选择自主搭建机房,也可选择云服务器 二、注册微信小程序 1.在微信公众平台官网首页(mp.weixin.qq.com)点击右上角的“立即注册”按钮。 2.登陆微信公众平台https://mp.weixin.qq.com/ 点击注册->注册小程序 3.依次按照官方提示填写注…

    2022年9月19日 编程开发
    8500
  • oracle 计算时间差,包含年、月、日、时、分、秒

    在做系统时,如图书管理系统、车辆管理系统、事务管理系统等,经常需要我们计算两个日期相差多少天,图书是否应该归还,事情是否完成等。 今天给大家分享oracle 中如何计算时间差! oracle时间差是以天数为单位,所以换算成年月,日 select floor(to_number(sysdate-to_date(‘2018-11-02 15:55:03’,’yy…

    2018年2月13日
    3.2K0
  • idea不识别@webServlet注解,javax.servlet.htttp 找不到的解决方法

    在servlet3.0以后,web.xml中对Servlet配置,可以通过@WebServlet注解配置.下面是@WebServlet的属性列表: 属性名 类型 描述 name String 指定Servlet 的 name 属性,等价于 <servlet-name>。如果没有显式指定,则该 Servlet 的取值即为类的全限定名。 value …

    2020年8月22日 编程开发
    15.8K0
  • 单元测试工具JUnit介绍及使用,单元测试快速入门教程五

    JUnit是一个开放源代码的测试框架,用在编写和运行可重复的测试脚本之上,是用于Java语言编写的面向对象程序的单元测试工具。JUnit框架功能强大,目前已经成为Java单元测试的事实标准,基本上能满足日常的测试要求。 1.Junit主要特性 (1)可以将测试代码和产品代码分别开发,便于管理。 (2)针对某一个类的测试代码,以较少的改动便可以应用    另一…

    2018年4月18日 编程开发
    4.9K0
  • python 字典的使用案例二:求平均分,并按平均分由高到低输出选手编号和最后得分

    校园好声音大赛,三位选手得分,由8位评委给出。 请根据评分表,将每们选手的得分去掉一个最高分和一个最低分后求平均分,并按照平均分由高到低输出选手编号和最后得分。 dicScores = {‘012’: [90, 94, 97, 86, 85, 89, 88, 85], ‘005’: [91, 91, 92, 98, 90, 96, 90, 95], ‘108…

    2020年1月22日
    11.4K0
  • 纯JSP实现计算圆的面积和周长

    一个jsp页面由元素和模板数据组成.元素是必须由jsp容器处理的部分.而模板数据是jsp容器不处理的部分,如jsp中的HTML内容 元素有三种类型: 脚本元素,指令元素, 动作元素 脚本元素:包含三个部分:声明,脚本段,表达式 声明:用于声明在其它脚本元素中可以使用的变量和方法 脚本段:是一段java代码 表达式:java语言中完整的表达式 声明 以<…

    2020年4月3日
    8.9K0

发表回复

登录后才能评论