Web课程设计76936.doc
-作者xxxx-日期xxxxWeb课程设计76936【精品文档】Web开发技术课程设计课题名称:企业职工工资在线管理信息系统的设计与实现学生姓名: 曹小丽 专业班级: 软件工程13201207 专业课程: web开发技术 指导老师: 陈斌全 2016年 3月 13日【精品文档】目 录第1章 系统设计目的11课程设计任务1第2章 系统功能模块设计22.1 职工模块2人事管理员模块2第3章 数据库设计3.3.3.4第4章 各功能模块的程序设计及运行测试结果4.4.4.8.9.114.2.1职工工资信息添加、查询和更新.11.15.17第5章 课程设计体会20.20.21主要Servlet代码附录.21主要JavaBeans代码附录.30参考文献46第1章 系统设计目的题目与要求Dreamweaver+JSP+SQL SERVER课程设计任务1. 主要功能设计一个企业职工工资管理信息系统,该系统的用户分别是:职工和人事管理员。不同的用户拥有不同的权限,各自完成各自的管理功能,不同的用户看到不同的系统功能。用Sql server2000创建后台数据库,然后利用JSP技术编写程序实现对数据库的操作,按照要求完成所有的功能和模块。职工的主要功能模块包括:(1) 职工注册与登录(2) 职工岗位工资信息查询(3) 职工留言板人事管理员的主要功能模板包括:(1) 工资信息的查询、添加、更新(2) 职工个人工资信息的更新和维护(3) 留言板管理2. 主要数据库表单(1) 职工基本信息表单主要字段有:职工号、姓名、性别、出生日期、岗位编号、工作年限(2) 岗位信息表单主要字段有:岗位编号、岗位名称、岗位基本工资、岗位津贴、特殊津贴、月工资(岗位工资+岗位工资+岗位津贴+特殊津贴)、养老保险(月工资*8%)、医疗保险(月工资*6%)、失业保险(月工资*1%)第2章 系统功能模块设计职工工资岗位信息查询2.1 职工模块职工注册登录职工留言板注册全体职工工资信息查询和更新人事管理员模块 职工个人工资信息查询和更新管理员登录留言板管理职工个人工资记录添加第3章 数据库设计第4章 各功能模块的程序设计及运行测试结果程序设计代码:/登录<link rel="stylesheet" type="text/css" href="style.css"/></head><body onload="a()"><h1><p align="center"><big><big><big><big><big>企业职工工资在线管理信息系统</big></big></big></big></big></p></h1><p><br></p><div class="login"><div class="login-top"> <h1>登录</h1><form id="form1" name="form1" method="post" action="Servlet1" ><input type="text" name="user" value="user" id="user" onfocus="this.value = ''" onblur="if (this.value = '') this.value = 'User Id'"><input type="password" name="password" id="password"value="password" onfocus="this.value = ''" onblur="if (this.value = '') this.value = 'password'"> <div class="forgot"> <h1><br> <input type="submit" value="登陆" onclick="tsubmit()"> <input name="radio" type="radio" id="radio" value="radio1" checked="checked" />职工 <input type="radio" name="radio" id="radio" value="radio2" />管理员 </h1> </form> </div> </div><div class="login-bottom"><h3><a href="register.jsp">在这里注册?</a></h3></div></div></body><script language="javascript">function tsubmit() var myForm=document.getElementById("form1"); var userName=document.getElementById("user").value; var password=document.getElementById("password").value; var regPassWord = /a-zA-Z0-9+$/; if(userName.length>8) alert("请填写正确的用户名!(最长8位)"); document.getElementById("userName").value="" document.getElementById("userName").focus(); else if(!regPassWord.test(password)|password.lenth>16|password.length<4) alert("请填写正确的用户名密码!(4-16位的数字或字母)"); document.getElementById("password").value="" document.getElementById("password").focus(); else /myForm.action="login.jsp" myForm.submit(); /注册<body ><div class="dataEye"><div class="loginbox registbox"> <div class="login-content reg-content"> <div class="loginbox-title"><h3> 注册</h3></div><form id="signupForm" name="signupForm" method="post" action="Servlet2" ><div class="login-error"></div><div class="row"><input type="text" name="user" placeholder="用户名" class="input-text-user noPic input-click" id="user" required></div><div class="row"> <input type="password" name="password" placeholder="密码" class="input-text-password noPic input-click" id="password" required></div><div class="row"><input type="password" name="passwordAgain" placeholder="确认密码" class="input-text-password noPic input-click" id="passwordAgain" required></div><div class="row"><input type="text" name="name" placeholder="姓名" class="input-text-user noPic input-click" id="name" required></div><div class="row"><input type="text" name="tel" placeholder="联系电话" class="input-text-user noPic input-click" id="tel" required></div><div class="row tips"><input type="checkbox" id="checkBox" checked="checked"><label>我已阅读并同意<a href="#" target="_blank">隐私政策、服务条款</a></label></div><div class="row btnArea"><input type="button" class="login-btn" value="注册" onclick="checkForm()"></div></form> </div><div class="go-regist">已有帐号,请<a href="login.jsp" class="link">登录</a></div> </div></div></div></body><script type = 'text/javaScript'>function checkForm() var b = true;var myForm=document.getElementById("signupForm"); var userName=document.getElementById("user").value; var password=document.getElementById("password").value; var AgainPassword=document.getElementById("passwordAgain").value; var Name=document.getElementById("name").value; var regPassWord = /a-zA-Z0-9+$/; if(userName.length>8|!userName) alert("用户名为空或用户名格式错误(最长8位)"); document.getElementById("userName").value="" document.getElementById("userName").focus(); b = false; else if(!regPassWord.test(password)|password.lenth>16|password.length<4) alert("密码为空或请用户密码格式错误(4-16位的数字或字母)"); document.getElementById("password").value="" document.getElementById("password").focus(); b= false; else if(password!=AgainPassword) alert("您两次输入的密码不一样,请重新输入!"); document.getElementById("passwordAgain").value="" document.getElementById("passwordAgain").focus(); b = false; else if(!Name) alert("姓名不能為空!"); b=false; if(b) alert("注册成功!"); myForm.submit(); </script></html>/ServletWebServlet("/Servlet2")public class Servlet2 extends HttpServlet private static final long serialVersionUID = 1L; /* * see HttpServlet#HttpServlet() */ public Servlet2() super(); / TODO Auto-generated constructor stub /* * see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response) */protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException / TODO Auto-generated method stubrequest.setCharacterEncoding("UTF-8");response.setContentType("text/html;charset=utf-8");InsertInformation data=new InsertInformation();SelectInformation num=new SelectInformation();String user=request.getParameter("user");String password=request.getParameter("password");String passwordAgain=request.getParameter("passwordAgain");String name=request.getParameter("name");String tel=request.getParameter("tel");if(data.InsertData(num.Length(),user,password,passwordAgain,name,tel)=true)request.getRequestDispatcher("/login.jsp").forward(request, response);elserequest.getRequestDispatcher("RegisterFail.jsp").forward(request, response);/* * see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response) */protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException / TODO Auto-generated method stubdoGet(request, response);<body onload="session()"><center><big><big>职工岗位工资信息查询</big></big></br><input type="button" name="button" id="button" value="返回主菜单" onclick="ons8()" style="background-color:transparent"/><input type="button" name="button" id="button" value="查看留言板" onclick="ons9()" style="background-color:transparent"/></center><div align="center"> <table border="0"> <tr width="50px" bycolor="#00ffff"> <td width="70px" height="50px">岗位编号</td> <td>岗位名称</td> <td>岗位基本工资</td> <td>岗位津贴</td> <td>月工资</td> <td>养老保险</td> <td>医疗保险</td> <td>失业保险</td> </tr><% String str=new String 100100; str=(String)request.getAttribute("str"); for(int i=1;i<=10;i+) out.print("<tr>"); if(stri1=null) break; for(int j=1;j<=8;j+)%> <td><%=strij%></td> <% out.print("</tr>"); %></table></div></body><script language="javascript">function session()var name=<%=session.getAttribute("WorkName")%>if(name=null)alert("您还没有登录,请登录!");window.location.href='login.jsp'function ons8()window.location.href='WorkMenu.jsp'function ons9()window.location.href='resServlet'</script></html><body class="a1" onload="session()" ><center><big><big><big>留言板</big></big></big><br><br><input type="button" name="button" id="button" value="返回主菜单" onclick="ons6()" style="background-color:transparent"/><input type="button" name="button" id="button" value="查看职工工资信息" onclick="ons7()" style="background-color:transparent"/> </center> <div class="layout"><form id="form2" name="form2" method="post" action="manageServlet"><textarea name="textarea" id="textarea" cols="35" rows="8" style="background-color:#FFC"></textarea><input type="submit" name="button" id="button" value="提交" /></form></div><div class="layout2">您的留言回复:<br><table ><tr><%if(request.getAttribute("massage")=null)%><td>您提交的留言还没有得到回复</td><% else %><td wih="200px" bgcolor="#FFFF99" ><%=request.getAttribute("massage")%></td></table></div></body><script language="javascript">function session()var name=<%=session.getAttribute("WorkName")%>if(name=null)alert("您还没有登录,请登录!");window.location.href='login.jsp'function ons6()window.location.href='WorkMenu.jsp'function ons7()window.location.href='jobInformationServlet'</script>4.2.1职工工资信息添加、查询和更新/添加<body text="#D6ffff" class="a1" onload="session()"><div align="center"> <h1>添加员工工资信息表 </h1><br><br></div><div align="center"> <form id="form1" name="form1" method="post" action="InsertWageServlet"> <p>职工姓名 <input type="text" name="name" /><br> <p>月份 <input type="text" name="month"/> </p> <p>岗位名称 <select name="jobNum" id="textfield4" > <option value="001">会计</option> <option value="002">出纳</option> <option value="003">主任</option> <option value="004">组长</option> <option value="005">销售员</option> <option value="006">程序员</option> </p></select> <p>特殊津贴 <input type="text" name="teshu" id="textfield5" /> <br> </p> <p> <input type="submit" name="button2" id="button2" value="添加" /> </p> </form> <input type="submit" name="button" id="button" value="返回主菜单" onclick="ons1()" /></div></body></body><script language="javascript">function session()var name=<%=session.getAttribute("AdminId")%>if(name=null)alert("您还没有登录,请登录!");window.location.href='login.jsp'function ons1()window.location.href='AdminMenu.jsp'</script>/职工工资信息的查询<div align="center"> <table border="0"> <tr bgcolor="#87cefa"width="100px"height="80px"> <th height="40px">职工姓名</th> <th>岗位名称</th> <th>基本工资</th> <th>特殊津贴</th> <th>月工资</th> <th>是否更新</th> </tr> <% String str=new String 100100; str=(String)request.getAttribute("massage"); for(int i=1;i<=20;i+) if(stri1=null) break;%> <tr> <td height="60px"><input type="button" value="<%=stri1%>" onclick="onclick1('<%=stri1%>')" style="background-color:transparent"/></td> <td><input type="text" id="zhiye<%=i %>" value="<%=stri2%>"style="background-color:transparent"/></td> <td><%=stri3%></td> <td><input type="text" value="<%=stri4%>"style="background-color:transparent"/></td> <td><%=stri5%></td><td id=""><input type="button" value="是" onclick="onClicka('<%=stri1.trim()%>','<%=stri2.trim()%>','<%=stri4%>',<%=1%>)"style="background-color:transparent"/></td><% out.print("</tr>"); %></table></div></body>/工资信息的更新<table border="0"> <tr bgcolor="#87cefa"width="100px"height="80px"> <th height="40px">职工姓名</th> <th>岗位名称</th> <th>基本工资</th> <th>特殊津贴</th> <th>月工资</th> <th>是否更新</th> </tr> <% String str=new String 100100; str=(String)request.getAttribute("massage"); for(int i=1;i<=20;i+) if(stri1=null) break;%> <tr> <td height="60px"><input type="button" value="<%=stri1%>" onclick="onclick1('<%=stri1%>')" style="background-color:transparent"/></td> <td><input type="text" id="zhiye<%=i %>" value="<%=stri2%>"style="