⼈事管理系统html,JSP实现简单⼈事管理系统
本⽂实例为⼤家分享了JSP实现简单⼈事管理系统的具体代码,供⼤家参考,具体内容如下
此系统使⽤jsp实现,其中包含了jsp九⼤内置对象和四⼤作⽤域的相关知识,采⽤map集合模拟数据库的⽅式,实现⽤户登录、员⼯信息展⽰、员⼯信息修改功能。
JSP的九⼤内置对象:Application,Config,Exception,Out,PageContent,Page,Request,Respsonse,Sesstion
JSP的四⼤作⽤域:Application Sesstion Page request
项⽬结构
Emp.java 员⼯信息
package del;
public class Emp {
private String account;
private String name;
private String password;
private String email;
public Emp(String account, String name, String password, String email) {
this.account = account;
this.name = name;
this.password = password;
}
public String getAccount() {
return account;
}
public void setAccount(String account) {
this.account = account;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
}
}
DBUtil.java ⽤集合模拟数据库存放员⼯信息jsp和html哪个更好
package org.wang.db;
import del.Emp;
import java.util.HashMap;
import java.util.Map;
//⽤集合模拟操纵数据库
public class DBUtil{
public static Map map = new HashMap();
//⽤静态代码块完成对map中的值的初始化操作
static {
map.put("001",new Emp("001","zhangsan","111111","111111@qq"));
map.put("002",new Emp("002","lisi","121212","121212@qq"));
map.put("003",new Emp("003","wangwu","131313","131313@qq"));
map.put("004",new Emp("004","zhaoliu","141414","141414@qq"));
}
//判断⽤户名和密码是否正确
public static boolean selectEmpByAccountAndPassword(Emp emp){
/
/⽤户输⼊的信息存⼊到emp对象中,判断emp对象中的值是否和map中的值对应
boolean flag = false;
//遍历当前map集合中的key
for (String key : map.keySet()){
Emp e = (key);
//判断⽤户传⼊的值是否与map集合中的值相等
Account().Account()) && Password().Password())){ flag = true;
break;
}
}
return flag;
}
}
index.jsp 登录界⾯
Created by IntelliJ IDEA.
User: wangy
Date: 2018/11/8
Time: 8:19
To change this template use File | Settings | File Templates.
--%>
⼈事管理系统登录
⼈事管理系统登录页⾯
账号:
密码:
index-control.jsp 登录界⾯的控制界⾯,⽤于处理⽤户登录信息是否与map集合中的员⼯信息匹配
Created by IntelliJ IDEA.
User: wangy
Date: 2018/11/8
Time: 9:09
To change this template use File | Settings | File Templates.
--%>
⼈事管理系统
request:获取请求信息
out.println(); 向页⾯输出信息
--%>
// 获取⽤户输⼊的账号及密码
String account = Parameter("account");
String password = Parameter("password");
//将⽤户输⼊的账号和密码封装到⼀个Emp对象中
Emp emp = new Emp(account,null,password,null);
boolean flag = DBUtil.selectEmpByAccountAndPassword(emp);
//获取map集合
Map map = DBUtil.map;
if(flag==true){
//设置session
session.setAttribute("account",account);
//使⽤application来获取系统访问量
Object o = Attribute("count");
//判断如果当前⽤户为第⼀个登录,则application中的值为空,此时将访问量设置为1
if(o == null){
application.setAttribute("count",1);
}else{
//count原来为String,强转为int型,并做+1操作
int count = Integer.String());
application.setAttribute("count",count+1);
}
%>
当前访问量:
欢迎来到⼈事管理系统
登录账户:账号员⼯姓名邮箱修改
for (String key : map.keySet()){
Emp e = (key);
%>
}
%>
}else{
throw new Exception("登录失败");
}
%>
error.jsp
Created by IntelliJ IDEA.
User: wangy
Date: 2018/11/8
Time: 16:01
To change this template use File | Settings | File Templates.
--%>
Title
update.jsp  修改员⼯信息页⾯
%--
Created by IntelliJ IDEA.
User: wangy
Date: 2018/11/8
Time: 15:27
To change this template use File | Settings | File Templates.
--%>
员⼯更新页⾯
当前访问量:
员⼯更新页⾯
登录账户:

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。