人才测评系统——人才测评模块的设计和实现---毕业论文

上传人:wo7****35 文档编号:55274044 上传时间:2018-09-26 格式:DOC 页数:58 大小:7.73MB
返回 下载 相关 举报
人才测评系统——人才测评模块的设计和实现---毕业论文_第1页
第1页 / 共58页
人才测评系统——人才测评模块的设计和实现---毕业论文_第2页
第2页 / 共58页
人才测评系统——人才测评模块的设计和实现---毕业论文_第3页
第3页 / 共58页
人才测评系统——人才测评模块的设计和实现---毕业论文_第4页
第4页 / 共58页
人才测评系统——人才测评模块的设计和实现---毕业论文_第5页
第5页 / 共58页
亲,该文档总共58页,到这儿已超出免费预览范围,如果喜欢就下载吧!
资源描述

《人才测评系统——人才测评模块的设计和实现---毕业论文》由会员分享,可在线阅读,更多相关《人才测评系统——人才测评模块的设计和实现---毕业论文(58页珍藏版)》请在金锄头文库上搜索。

1、本本 科科 毕毕 业业 论论 文文人才测评系统人才测评系统人才测评模块的设计和实现人才测评模块的设计和实现Talent Assessment System: Design and implementation of talent assessment module 姓 名: 学 号:学 院:软件学院系:软件工程专 业:软件工程年 级:指导教师: 年年 月月I摘要随着企业的信息化和体制改革步伐,人才竞争使企业的人力资源面临前所未有的挑战。高端人才所具有的多年职场经历和面试经验容易影响招聘公司对于应聘者真实能力的判断。本系统为一个全面的选拔人才的测评系统,旨在帮助公司通过一系列测试判断出应聘者是否

2、提供了真实的信息,从而选出最适合的人才,不断地提高企业的竞争力。本系统应用了 Spring+Struts2+Hibernate(SSH)三大框架,采用多层体系结构,分为实体层、Dao 层、服务层和 Web 层。实体层包括系统所要涉及的表和对应的实体类。Dao 层提供各模块所需要的各种持久化操作。服务层负责业务逻辑。Web 层用于处理页面和业务逻辑的交互、对数据进行必要的验证和转换和对业务数据进行呈现。此外还给出了开发环境的配置文件、映射文件、实现的类、流程图和界面图等。全文从项目背景出发,介绍了系统开发的背景和价值,在对关键技术进行介绍的基础上,结合实际项目,从系统分析、系统设计、系统实现和系

3、统测试四个主要方面进行了详细论述,并在论文最后进行总结,指明下一步进行改进的地方。关键词:关键词: 人才测评;SSH;B/S 架构IIAbstractWith the pace of enterprise information and institutional reform, enterprises face unprecedented challenges in the competition for talent. High-end talents with years of experience in the workplace and interview easily affect

4、 the recruitment company for the judgment to the true ability of the candidates. This is an assessment system which affords comprehensive talent assessment. It helps to select the most suitable talent through a series of tests which judge whether the applicant provides the real information.The syste

5、m applied the Spring + Struts2 + Hibernate (SSH) frameworks and used multi-layer architecture. It sub-divided into physical layer, Dao layer, service layer and Web layer. Physical layer includes the system tables to be involved and the corresponding entity class. Dao layer provides a variety of pers

6、istent operations the modules required. Business layer is responsible for business logic. Web layer is responsible for handling the interactive of pages and business logic, the necessary validation and conversion of data and the presentation of business data. In addition, the writer also gives the d

7、etailed design description including the developed environment configuration file, the mapping files, the classes, the flow charts and interface diagrams. Finally the writer also tested the system.The paper starts from the program background, and then introduces the background and value of the syste

8、m developed. After the introduction of the key technologies, combined with the practical projects, the paper are discussed in detail from systems analysis, system design, system implementation and system testing four main aspects. And in the end the writer summed up the paper and identified the next

9、 step for improvement.Key words: Talent Assessment; SSH; B/S ArchitectureIII目录目录第一章第一章 绪论绪论11.1 引言引言 11.2 论文组织结构论文组织结构 .1第二章第二章 系统相关技术概述系统相关技术概述 .32.1 MVC 设计模式介绍设计模式介绍.32.2 SSH 系统架构介绍系统架构介绍.42.2.1 Spring 简介.42.2.2 Struts2 简介 52.2.3 Hibernate 简介72.2.4 SSH 整体架构简介 8第三章第三章 人才测评系统分析人才测评系统分析103.1 系统需求分析系统

10、需求分析.103.1.1 功能需求103.1.2 可行性分析103.1.3 运行需求103.2 用例图用例图103.3 流程图流程图11第四章第四章 人才测评系统设计人才测评系统设计154.1 模块设计模块设计154.2 包和类设计包和类设计 164.3 顺序图设计顺序图设计 204.4 数据库设计数据库设计 25第五章第五章 人才测评系统实现人才测评系统实现285.1 系统开发环境系统开发环境.285.2 Spring 文件的配置文件的配置.29IV5.3 Struts2 文件的配置文件的配置.315.4 Hibernate 文件的配置文件的配置.335.5 数据库的配置数据库的配置.345

11、.6 控制器的实现控制器的实现.345.7 系统系统 WEB 层的实现层的实现 .355.8 系统部署系统部署35第六章第六章 系统测试及运行结果系统测试及运行结果376.1 系统测试系统测试.376.2 运行结果运行结果.41第七章第七章 总结与展望总结与展望.487.1 论文总结论文总结.487.2 论文展望论文展望.48参考文献参考文献49致谢致谢.50VContentsChapter 1 Prefac.11.1 Introduction.11.2 The structure of this paper.1Chapter 2 System related technologies out

12、line.32.1 Introduction of MVC design pattern .32.2 Introduction of SSH architecture .42.2.1 Introduction of Spring .42.2.2 Introduction of Struts2 52.2.3 Introduction of Hibernate .72.2.4 Introduction of SSH overall framework .8Chapter 3 Analysis of Talent Assessment System.103.1 Analysis of system

13、requirements 103.1.1 Functional requirements 103.1.2 Feasibility analysis 103.1.3 Run demand 103.2 Use case diagrams .103.3 Flow chars 11Chpter 4 Talent Assessment System Design.154.1 Modules design 154.2 Packages and classes design .164.3 System sequence diagrams design .194.4 Database design .25VI

14、Chapter 5 Implementation of Talent Assessment System.285.1 System development environment.285.2 Spring configuration .295.3 Strusts2 configuration .315.4 Hibernate configuration .335.5 Database configuration.345.6 Implement of controller .345.7 Implementation of WEB layer .355.8 System deployment .35Chapter 6 Syst

展开阅读全文
相关资源
相关搜索

当前位置:首页 > 学术论文 > 毕业论文

电脑版 |金锄头文库版权所有
经营许可证:蜀ICP备13022795号 | 川公网安备 51140202000112号