摘 要
企业员工经验库系统就是大公司必备的管理系统,它是一个计算机软硬件资源以及数据库的人-机系统。经过对题目和内容的分析,选用了Oracle公司的Java开发语言,由于它提供了用于从数据库中访问数据的强大工具集,使用它可以建立开发比较完善的数据库操作应用程序,并利用Mysql提供数据库。根据实际情况,使用快速原型法(Rapid Prototyping)即以少量代价快速地构造一个可执行的软件系统模型。以此为基础,搭建了系统框架,对其下的功能模块进行了划分。初步实现了诸如添加、删除、查询、修改等功能,并通过权限控制,为不同的登录用户提供不同的功能。其间不断对系统进行改进和完善,解决了一些在数据更新时遇到的问题,并针对系统的不足之处,提出了新的解决方案。
关键词:企业 ;管理 ;经验
ABSTRACT
The employee experience database system is a necessary management system for a large company. It is a human machine system of computer hardware and software resources and database. After the analysis of the topic and content, the Oracle company's Java development language is selected. Because it provides a powerful tool set for accessing data from the database, it can be used to develop a relatively perfect database operation application and to use Mysql to provide the database. According to the actual situation, we use Rapid Prototyping to construct an executable software system model at a small cost. On this basis, a system framework is built, and the functional modules under it are partitions. It initially implements functions such as adding, deleting, querying, modifying and so on, and provides different functions for different logon users through permissions control. In the meantime, the system is constantly improved and perfected, and some problems encountered in the update of data are solved, and a new solution is put forward in view of the shortcomings of the system.
Keywords: Enterprise; management; experience.
目 录
基于Web的企业员工经验库管理系统的设计与实现
1.前言
企业员工经验库系统是针对现在公司的大量业务处理工作而开发的管理软件。根据用户的要求,实现人员基本情况管理、职位调整管理等几个方面的功能。
用户通过输入姓名、密码、职工履历等基本信息,由系统自行生成相应的统计数据及各类统计报表以供用户查询、打印,另外操作人员还可以对这些基本信息进行定期的更新和删除, 企业员工经验库系统力求给用户方便快捷的途径去管理这些繁琐的数据
随着计算机技术的飞速发展,计算机在企业管理中应用的普及,利用计算机实现企业人事档案的管理势在必行。当前企业信息管理系统正在从C/S结构向B/S结构转移,但是由于安全性等方面的因素,C/S结构的管理信息系统仍然占据企业管理信息系统的主流。本系统开发拟采用SSM框架,应用JSP、Mybatis、Spring、SpringMVC技术,数据库使用MySQL。各技术实现功能如下:JSP主要展示对外界面;Mybatis对接的是关系型数据库(MySQL),主要包括对数据库中信息的insert、delete、update、select等;Spring是本系统的管理容器,主要管理factory的创建、依赖注入、对象的创建等;SpringMVC对接的是JSP,负责界面的展示和跳转。