下载本文档
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、.、/一1.前言每年毕业临近,都有大量的毕业生需要进行毕业设计,这其中的首要关节就是课题的选择,以往指 导老师都是采用人工手写方式给学生们提供相关的课题供学生选择,如果指导老师带领的学生比较多, 或者是当年毕业的学生比较多,这样就容易造成学生的课题选择很混乱,指导教师难于统计学生的课题 选择情况等一系列问题,基于这些传统问题,我们需要一个能够自动统计、实时分配课题的一个管理平 台来帮助学生、指导老师。此系统的开发,主要的目的是使老师能更好的管理课程设计,也能使学生能更好的把自己想要选的 课程正确无误的选出来。使处在选课时期的学生能有条不紊的进行。2. 系统的需求分析2.1 功能需求2.1.1
2、毕业设计选题管理系统功能要求:1. 毕业设计题目维护和查询:毕业设计题目的添加、修改;按照项目类型、名称、编号等查询;毕业 设计选题查询、登记。2. 指导教师信息维护和查询:指导教师信息的添加、修改、删除,查询;3. 毕业生选题管理:学生选题登记;选题情况查询;4. 毕业生信息的维护和查询。根据以上各功能模块需求将系统的功能细化为以下几点:(1)前台学生选题学生网上选题:学生登录管理系统进行选题(2)前台教师出题 教师网上出题:教师进入毕业选题出题。 教师管理出题:教师进入系统后对毕业设计题目进行修改和删除。 选题确认:学生选好题目后,教师可以确认该题由选择该题的学生做。(3)后台管理出题及选
3、题情况 用户管理模块:管理员可以对用户进行用户管理,对已存在的用户进行修改,查看等。 角色管理模块:管理员可以对用户的角色进行管理,可以给用户分配角色,对角色分配权限。2.2 开发环境需求 操作系统: window7 或更高版本 因为毕业设计课题管理系统针对的用户是学生和教师,学生和教师普遍使用 windows 操作系统,所以 选着 windows7 或更高版本的操作系统 web 服务器: apache-tomcat6apache-tomcat6 是开源的免费的 web 服务器,节省开发成本 数据库: MySQLMySQL 是一款免费的数据库,节省成本开发工具: myeclipse8.5mye
4、clipse8.5 功能强大的 JavaEE 开发工具,该管理系统选用 JavaEE 开发。3. 系统设计3.1 基本设计概念和处理流程本系统采用结构化分析,设计顺序为自顶向下,层层逐步细化。图13.2 软件功能设计图23.2 数据库设计321 E-R 图322数据库表用户表(user)字段类型备注useridVarchar ( 20) primary key用户IDPwdvarchar(32)用户密码roleIdInt外键tn ameVarchar(20)姓名sexVarchar(5)性别AgeInt年龄表1课题表(task)字段类型备注taskIdInt primary key课题IDta
5、sk namevarchar(20)课题名sflagint状态(是否被选)taskTextvarchar(50)课题内容表2选择课题(chosetask)字段类型备注ctIdint primary key学生选课题iduIdvarchar(10)外键taskIdInt课题ID表3上传课题(puttask)字段类型备注ptIdint primary key教师上传课题iduIdvarchar(10)外键taskIdInt课题ID表4角色表(roleinfo)字段类型备注roleIdInt primary key角色IDrole namevarchar(10)角色名表5权限表(rightinfo)
6、字段类型备注rightCodevarchar(20)primary key权限rightPare ntCodevarchar(30)父权限rightTypevarchar(20)rightTextvarchar(50)RightUrlvarchar(30)url地址RightTipvarchar(50)表6角色权限表(roleright )rr_idIntprimary key主键rr_roleidInt夕卜键role表rr_rightCodevarchar(20)夕卜键rightinfo表表74.典型功能模块的详细设计和实现过程用户模块登录功能代码:public String doLog i
7、n()Userinfo uu= userService .checkUser( user );if (uu!= null )ServletActio nCo ntext.getRequest().getSessio n().setAttribute("USER"uu);int roleld=uu.getRole in fo().getRoleld();Rolei nfo r= roleService .getRoleWithRights(roleld);Stri ng men uStri ng=buildDTreeMe nuStri ng(r);ServletActio n
8、Con text.getRequest().getSessio n().setAttribute("MENU_STRING"men uStri ng);return "mai n"elsereturn"in put"publicUser info checkUser(User info u) Useri nfo uu= n ull ;String hql= "from Useri nfo where userid=? and pwd=?"Object args =new Objectu.getUserid(),u.
9、getPwd();List<Useri nfo> list =com mon Dao .list(hql, args);if (list!= null && list.size()>0)uu = list.get(0);return uu;public List list(String hql, Object args) List list=this .getHiber nateTemplate().fi nd(hql,args);return list;查询信息功能代码:publicStri ng toList()SPageBea n spb =HttpSe
10、rvletRequest request = ServletActio nCon text.getRequest(); int offset = 0;ifnew SPageBea n();(request.getParameter( offset = 0;else "pager.offset")= n ull ) offset = In teger.parse Int(request.getParameter("pager.offset"int maxPageItems;if (request.getAttribute("maxPageltem
11、s")=);null )maxPageItems = 5;In teger.else maxPageItems =parse Int (request.getParameter("maxPageItems");spb.setOffset(offset);spb.setPageSize(maxPageltems); in foService.getList(spb);"SPB" , spb);request.setAttribute( return "list"publicvoid getList(SPageBea n spb
12、) Stri ng hql="from Useri nfo"com mon Dao .listByPage(hql, spb);publicvoidfinalfinallistByPage(String hql, SPageBean spb) Str ing hql1=hql;SPageBea n spb仁spb;if (hql!= null )int total=(I nteger)Hiber nateCallback() this .getHibern ateTemplate().execute(newpublic Object dolnH iber nate(Sess
13、i on sess)Hiber nateExceptio n.throwsSQLException String qString=if (hql1.toLowerCase().indexOf(III!"select ")!=-1));intidx=hql1.toLowerCase().i ndexOf("from"qStri ng="select cou nt(*)"+hql1.substri ng(idx,hql1.le ngth();else qStri ng="select cou nt(*) "+hql1;
14、Query cQuery=sess.createQuery(qStri ng);cQuery.setCacheable(true );long o= (Lon g)cQuery.u ni queResult();int ii=( int )o;return ii;);spb.setTotal(total);newList data=(List)this .getHibern ateTemplate().execute(Hiber nateCallback() publicObject dolnH iber nate(Sessi on sess)throwsHiber nateExceptio
15、n,SQLException Query query= sess.createQuery(hqll); query.setFirstResult(spb1.getOffset(); query.setMaxResults(spb1.getPageSize(); return query .l ist(););spb.setDatas(data);public classSPageBea n privateintoffsetprivateintpageSizeprivateinttotal ;privateListdataspublicintgetTotal() return totalpubl
16、ic void setTotal( int total) this . total = total;public List getDatas() return datas ;public void setDatas(List datas) this . datas = datas;public int getOffset() return offset ;public void setOffset( int offset) this . offset = offset;public int getPageSize() retur n pageSize ;public void setPageS
17、ize( int pageSize) this . pageSize = pageSize;上传课题功能代码:public String toadd()return "add" publicString doadd()if (taskService .doAdd( task )= true )SPageBea n spb =new SPageBea n();HttpServletRequest request = ServletActio nCon text.getRequest();int offset = 0;"pager.offset") = n
18、ullif (request.getParameter(offset = 0; else offset =In teger.parse Int(request.getParameter(int maxPageItems;=n ull ) maxPageItems = 5; else maxPageItems =In teger.parse Int(request.getParameter(spb.setOffset(offset); spb.setPageSize(maxPageltems); taskService.getTask in fo(spb);"pager.offset&
19、quot;);if (request.getAttribute("maxPageItems" );"maxPageItems" )"SPB1" , spb);ServletActio nCon text.getRequest().setAttribute(return "list"elsereturn "add"public boolea n doAdd(Tasklnfo t) Serializable ret =com mon Dao .add(t);return ret!=n ull ;管理
20、员模块管理员对角色管理功能:public class RoleActi on privateIRoleServiceprivateIRightServiceexte ndsAction SupportroleService ;rightService ;privateRole inforolepublic void setRoleService(IRoleService roleService) this . roleService = roleService;public void setRightService(IRightService rightService) this . righ
21、tService = rightService;public Rolei nfo getRole() return rolepublic void setRole(Role info role) this . role = role;public Stri ng toList()List<Role info> roles=roleService .getList();"ROLES" , roles);ServletActio nCon text.getRequest().setAttribute( return "list" ;publicS
22、tr ing toAssig n()List<Righti nfo> rights=rightService .getAllRights();.getRoleld();Role info r =roleService .getRoleWithRights(rolefor (Rightinfo right:rights)if (r.getRights().contains(right)right.setChecked("checked");ServletACtiOnConteXt.getReqUest()-setAttribute("ROLE"
23、 , r);ServletActio nCon text.getRequest().setAttribute("RIGHTS" ,rights);retur n"assig n" ;publicStri ng doAssig n()throwsExcepti onHttpServletRequest request=ServletActio nCon text.getRequest();Stri ng n ewRights=request.getParameterValues("CheckBox_Rights" );roleServi
24、ce .updateRoleRights(role .getRoleld(), newRights);HttpServletResp onse resp on se=ServletActio nCon text.getResp on se();resp on se.se ndRedirect("role!toAssig n. actio n?role.roldld="+role .getRoleId()+ "&message=ok");return n ull ;public class RightServiceImpl_Himpleme nts
25、IRightServiceprivate ICom monDAOcom mon Dao ;public void setCom mon Dao(ICom monDAO com mon Dao) this . com mon Dao = com mon Dao;publicListvRightinfo> getAllRights() String hql= "from Righti nfo"List<Righti nfo> list =com mon Daoist(hql);return list;管理员对用户管理功能:(增、删、改、查)publicStri
26、 ng delete()int uid =In teger.parse Int(ServletActionCon text.getRequest().getParameter("userid" );boolea nflag = userService .delete(uid);if (flag)return "list1" ;elsereturn "list" ;/编辑用户publicStr ing toedit()intuid=In teger.parse Int(ServletActionCon text.getRequest()
27、.getParameter();Useri nfo uu =userService .detail(uid);ServletActionContext.getRequest().setAttribute("USER2" , uu);return "edit" ;public Stri ng edit()booleanflag = userService .update( user );if (flag)return "list" ;elsereturn "edit_error" ;publicStr ing det
28、ail()intuid=In teger.parse Int(ServletActionCon text.getRequest().getParameter();Useri nfo uu =userService .detail(uid);ServletActionContext.getRequest().setAttribute("USER1" , uu);return "detail" ;public Stri ng add()if ( userService .addUser( user )= true )List<Useri nfo>
29、 user =userServiceist();ServletActio nCon text.getRequest().setAttribute("USERS"return "list" ;elsereturn "add"publicStr ing toadd()"userid""userid"user);return"add"publicStr ing doLog in()Userinfo uu= userService .checkUser( user );if (uu!
30、= null )ServletActio nCon text.getRequest().getSessio n( ).setAttribute(uu);introleld=uu.getRole in fo().getRoleld();Rolei nfo r= roleService .getRoleWithRights(roleId);Stri ng men uStri ng=buildDTreeMe nuStri ng(r);ServletActio nCon text.getRequest().getSessio n( ).setAttribute(men uStri ng);return
31、"mai n"elsereturn "in put" ;public boolea n addUser(Useri nfo u) Serializable ret =com mon Dao .add(u);return ret!= n ull ;public List list() String hql ="from Useri nfo"List<Useri nfo> list =com mon Dao .list(hql);return list;public Useri nfo detail(int userid) Useri nfo uu= n ull ;String hql= "fromUseri nfou left outerjoi nfetch u.roleObject args= new Objectuserid;List&
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 田径运动会活动方案(汇编15篇)
- 五年级二十年后的家乡单元作文
- 安全工作演讲稿汇编15篇
- 2023年幼儿园安全工作计划10篇
- 财务会计个人辞职报告集合8篇
- 一次有趣的游戏初一日记400字5篇
- 北京市通州区2024-2025学年八年级上学期期末考试道德与法治试卷(含答案)
- 2025年工程瑞雷波仪项目合作计划书
- 国培计划心得体会
- 汽车三方租赁合同
- 文化创意合作战略协议
- 国家开放大学法学本科《商法》历年期末考试试题及答案题库
- 金匮要略知到智慧树章节测试课后答案2024年秋浙江中医药大学
- 【MOOC】有机化学实验-南京工业大学 中国大学慕课MOOC答案
- 2024年妇保科工作总结及计划
- 北京理工大学《数据结构与算法设计》2022-2023学年第一学期期末试卷
- 锚杆(索)支护工技能理论考试题库200题(含答案)
- 影视后期制作团队薪酬激励方案
- 2024年公安机关理论考试题库500道
- 2024年中国主题公园竞争力评价报告-中国主题公园研究院
- 2024年有限合伙股权代持
评论
0/150
提交评论