基于BS架构的权限管理系统 毕业设计(论文)
基于B/S架构的权限管理系统
摘要:任何多用户的系统不可避免的涉及到权限问题,系统的使用者越多、使用
者本身的社会属性或分工越复杂,权限问题也就越复杂。无疑,无论是背负复杂办公室政治关系的办工系统、包含纵向行政关系的电子政务业务系统还是用于数据业务集成的应用集成系统,都不可避免的要解决这一问题。
不同职责的人员,对于系统操作的权限应该是不同的。优秀的业务系统,这是最基本的功能。可以对“组”进行权限分配。对于一个大企业的业务系统来说,如果要求管理员为其下员工逐一分配系统操作权限的话,是件耗时且不够方便的事情。所以,系统中就提出了对“组”进行操作的概念,将权限一致的人员编入同一组,然后对该组进行权限分配。
权限管理系统应该是可扩展的。它应该可以加入到任何带有权限管理功能的系统中。就像是组件一样的可以被不断的重用,而不是每开发一套管理系统,就要针对权限管理部分进行重新开发。满足业务系统中的功能权限。传统业务系统中,存在着两种权限管理,其一是功能权限的管理,而另外一种则是资源权限的管理,在不同系统之间,功能权限是可以重用的,而资源权限则不能。本文主要介绍一个简单的基于B/S模式的权限管理系统的实现。系统采用JSP技术,数据库采用MySQL。
关键词: B/S架构;Eclipse;JSP;MySQL
1
基于BS架构的权限管理系统 毕业设计(论文)
Stocking Selling Storing Management System On B/S Model
Abstract: Any multi-user system inevitably involves access problems, system, user
itself more users the more complex social attribute or division, access and more complex problems. Undoubtedly, whether carried complex office political relations do work system, contains the longitudinal administrative relationship between e-government business system or used for data services of integrated application integration system, are inevitable to solve this problem.
Different responsibility for system operation of personnel, the authority should be different. Excellent business system, this is the most basic functions. For \can access distribution. For a big enterprise's business system is if the request administrator for the distribution system operation under each employee is a time-consuming permissions words and not quite convenient things. So, system put forward the \same group to enroll, and then to access this assignment.
Authority management system should be extensible. It should be able to add to any authority management function with the system. Like components as can be continuously reuse, not every develop a set of management system, then again for rights management part development. Meet the function of business system permissions. Traditional business system, there exist two rights management, one is to function, and another jurisdiction management is a kind of resource permissions in different system of management, and function between the permissions are can reuse, and resource permissions cannot. This paper mainly introduces a simple based on B/S mode authority management system implementation. System adopts the JSP technology, database using MySQL.
Keywords: B/S Model、Eclipse、 JSP、MySQl
2
基于BS架构的权限管理系统 毕业设计(论文)
目录
前言 ................................................................................................................................ 5 第1章 绪论 .................................................................................................................. 6 1.1软服学院网站制作的原因及意义 ...................................................................... 6 第2章 开发工具介绍 .................................................................................................. 7 2.1 B/S构架介绍 ....................................................................................................... 7 2.2 Eclipse介绍 .......................................................................................................... 7 2.3 MySQL介绍 ........................................................................................................ 8 2.4 JSP介绍 ................................................................................................................ 8 2.5 Servlet 介绍 ............................................................................................................ 9 2.6 HTML 介绍 ............................................................................................................ 9 第3章 需求分析 ........................................................................................................ 10 3.1 可行性分析 ....................................................................................................... 10 3.1.1 技术可行性 ................................................................................................ 10 3.1.2 经济可行性 ................................................................................................ 11 3.1.3 操作可行性 ................................................................................................ 11 3.1.4 法律可行性 ................................................................................................ 11 3.2 系统功能分析 ............................................................................................... 11 3.2.1 登录 ............................................................................................................ 11 3.2.2 注册 ............................................................................................................ 12 3.3 系统性能需求分析 ....................................................................................... 12 3.3.1硬件环境 ..................................................................................................... 12 3.3.2软件环境 ..................................................................................................... 12 3.4 系统安全性分析 ........................................................................................... 12 第4章 系统概要设计 ................................................................................................ 13 4.1 系统设计目标 ................................................................................................... 13 4.2 系统设计思想 ................................................................................................... 14 4.3 数据库设计 ....................................................................................................... 14 第5章 详细设计及编码实现 .................................................................................... 15 5.1 系统登录 ........................................................................................................... 15 5.2 用户注册 ........................................................................................................... 18 结论 .............................................................................................................................. 20
3
基于BS架构的权限管理系统 毕业设计(论文)
致谢 .............................................................................................................................. 21 参考文献 ...................................................................................................................... 22
4
基于BS架构的权限管理系统 毕业设计(论文)
前言
随着信息化时代的到来,计算机技术已经在各行各业中发挥着不可替代的作用。当前越来越多的软件已经认识到了对于软件用户管理的重要性,已将计算机技术应用于日常的管理工作中。科学的运用计算机技术进行管理工作不仅可以使管理工作规范化、系统化、自动化而且可以节省相当的人力、物力。它能够使企业走上良性运转轨道,从而为其快速发展奠定基础。
本论文就是对权限管理进行介绍。在第二到五章中,分别介绍了Eclipse、B/S构架、MySQL、等开发工具,还介绍了HTML语言、Asp语言等网络语言。在介绍过程中结合了本人所学的计算机网络方面的知识,力求达到精益求精。
本论文由本人完成,限于时间和本人的现有水平,文中的不足及应该完善的部分在所难免,敬请老师在阅读之后加以批评指正。
5