基于servlet+jsp+mysql人事工资管理系统
- 一、系统介绍
- 二、功能展示
- 1.用户登陆
- 2.查看个人信息
- 3.查看个人工资、查看考勤
- 4.查看自己所在部门
- 5.人员信息管理
- 6.考勤管理(管理员)
- 7.工资管理(管理员)
- 8.部门管理(管理员)
- 三、代码展示
- 四.获取源码
一、系统介绍
环境:开发工具:eclipse,数据库:MySQL8.0 jdk1.8
架构:servlet,前端jsp
主要功能
员工:员工管理(查看个人信息)、工资管理(查看个人工资、查看考勤)、部门管理(查看自己所在部门);
系统管理员:员工管理(人员管理、修改密码)、工资管理(考勤管理、工资管理)、部门管理
二、功能展示
1.用户登陆
2.查看个人信息
3.查看个人工资、查看考勤
4.查看自己所在部门
5.人员信息管理
6.考勤管理(管理员)
7.工资管理(管理员)
8.部门管理(管理员)
三、代码展示
package com.query;
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
@WebServlet("/queryAttendance")
public class queryAttendance extends HttpServlet {
private static final long serialVersionUID = 1L;
public queryAttendance() {
super();
}
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
request.setCharacterEncoding("UTF-8");
String userA=request.getParameter("userA");
if(userA!=null) {
response.sendRedirect(request.getContextPath() + "/qureyuserA.jsp?userA="+userA);
}else {
response.sendRedirect(request.getContextPath() + "/AttendanceManagement.jsp");
}
}
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
doGet(request, response);
}
}
四.获取源码
点击下载
基于servlet+jsp+mysql人事工资管理系统(含实训报告)