通用的轻量级工作流系统设计实现分析论文
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
目录
摘要2
前言4
1、绪论5
1.1研究目的和意义5
1.2课题研究现状6
1.3主要研究工作7
1.4本文的组织安排7
2、工作流技术概述8
2.1工作流的相关概念8
2.2工作流技术的发展与产品9
2.3工作流管理系统11
2.3.1工作流管理系统的功能11
2.3.2工作流管理系统的体系结构12
2.4工作流参考模型16
2.5小结17
3轻量级工作流管理系统的设计与实现18
3.1轻量级工作流管理系统概念18
3.1.1传统工作流管理系统18
3.1.2轻量级工作流管理系统19
3.2系统概述19
3.2.1 匿名用户角色19
3.2.2职员角色部分19
3.2.3管理员角色功能部分19
3.3系统预览20
3.4系统特点22
3.5系统需求分析23
3.5.1可登陆用户的基本功能23
3.5.2公司职员具有的功能23
3.5.3系统管理员具有的功能23
3.6系统基本框架24
3.6.1功能上划分24
3.6.2角色上划分25
3.6数据库的设计27
3.6.1数据库需求分析27
3.6.2数据库概念结构设计27
3.6.3数据库逻辑结构设计32
3.7模型(Model)层的设计(部分)34
3.7.1用户模型类(T_User.cs)34
3.7.2工作流模型类(T_workflow.cs)37
3.8业务逻辑层设计(部分类)39
3.8.1数据库帮助类(SQLHelper.cs)(部分)39
3.8.2用户操作类(T_User.cs)47
3.9界面层的设计(部分)52
3.9.1配置web.config文件52
3.9.2用户登陆54
3.9.3工作流管理57
4、结束语59
致谢60
参考文献61
通用的轻量级工作流系统设计与实现
摘要: 工作流管理系统是近年来在计算机应用领域发展最为迅速的技术之一。工作流术的主要特点是过程的自动化处理,这些过程包含以人和以机器为基础的活动的结合,特别是对那些与IT应用程序、工具交互的过程进行自动化处理。工作流技术的引入,使应用系统的流程逻辑与业务逻辑耦合度降低,从而降低了复杂流程应用的开发难度,提高了应用系统的开发效率和可维护性。
传统工作流管理系统的设计从提供功能齐全的工作流服务角度出发,不可避免地导致了系统架构极为庞大,系统的复杂性也随着增大。同时传统的工作流管理系统提供的功能是以集成的方式实现,从数据存储到运行环境往往都有自己的一整套独特的体系结构,因而想从中分离出某个功能,将会是一件非常困难的事情。由于这些问题的存在,使得传统的工作流管理系统不能快速地根据具体的应用需求定制,灵活地集成到应用系统。
为了克服当前工作流在应用中的不足,本文结合具体的应用需求,提出了一个轻量级工作流管理系统的框架结构。轻量级工作流架构的核心部分,由几个组件提供工作流的基本功能。在对轻量级工作流管理系统进行设计时,本文把它从体系结构上划分为三个层展现层,业务逻辑层,数据层,然后,对工作流系统的设计进行详细介绍。具体研究内容如下:
1.对工作流技术的研究现状和理论进行调查和研究,并对主流的开源工作流管理系统进行深入的分析和对比。
2.在工作流理论的基础上,从够用、灵活和低成本的设计原则出发,对轻量级工作流管理系统进行了研究,并对其设计方案和实现技术进行了详细阐述。
关键词:工作流、工作流建模、轻量级工作流管理系统
Abstract:Workflow management system is one of the most rapidly developed tehnology int computer area recently.Its primary characterictic is automation of processes,Which involving combinations of some activities processes.Workflow technology’s introduction lowers the coupling between process logic and business logic of the application system,then reducing complexity of the application development process,raising the application system development efficiency and maintainability.
The purpose design of traditional workflow architectures aims at providing full fledged support for the widest possible application spectrum.Consequently,most workflow management system,both products and research prototypes,are heavyweight,monolithic,and package a comprehensive set of features in anall-or-nothing manner.Additionally,current workflow systems are hard to integrate with other environments.
The solution to the previous probles introduced here is a lightweight workflow architecture that enables software developers to pick and choose the workflow featuresthety need.At the core of the architecture,several components provide basic workflow functionality.
In the paper,firstly,the workflow management system is divided into three layers,
namely view、business logic and data access.Then,give an elaboration on workflow engine and process definition tools.Details as follows:
1.Make investigations and researches on actualities of workflow technology,as well as give deeply analysis and comparisons on mainstream open source workflow management system.
2.Based on work flow theory,and based on design principle of sufficient,flexible and low-cost,we make researches on the lightweight workflow management system,as well as elaborate on its design and implementation techniques.We put emphasize on the core modules in workflow engine such as workflow process template management,workflow instance management,the list ofwork-item management,transfer services,time constraints services,and so on. Also,we discuss design and implementation of process definition tools.