B/S结构下的OA流程可视化的研究与实现
摘 要
工作流是指整个或部分业务流程在计算机支持下的全自动或半自动化。在计算机网络环境下,工作任务在多个人或单位之间的流转实际上将表现为信息或数据在多个人之间的传送。使用可视化的OA工作流设计工具,用户不需要编程就可以定义设计出满足要求的收发文流程,实际使用效果良好。论文以可视化的OA工作流设计工具的开发为基础,主要阐述五个方面的内容。第一部分介绍了工作流和工作流设计工具的相关概念与开发背景;第二部分对工作相关基础理论技术、系统环境与平台基础、以及开发技术进行了描述;第三部分对系统功能进行了分析;第四部分详细介绍了系统流程、流程可视化设计的实际开发过程中使用到的关键技术;最后一部分在总结了系统开发心得的同时,提出了目前系统存在的不足和有待改进的地方。
关键词:工作流;流程定义;可视化;Java Applet
The Research and Implementation of Visual OA workflow Based on B/S Structure
Abstract
Workflow is a full automation or semi-automation on business process, which is supported by the computer technology. In the distributed environment, tasks transferred among different persons and departments are information or data passed among participants according to the defined set of rules. Using visual OA workflow designing tools, users can define and design receiving and ending document workflow without programming. The actual result is very satisfactory. This paper is based on the development of visual OA workflow designing tools. And it consists of five parts. The first part introduces the workflows, the related concepts and the developing background of the tools designing it. The second surveys the work-related theory and developing technology. The third one carries on the analysis of the system functions. The fourth deals with following parts in detail: the system flow, the system environment and the essential technology of designing for the platform foundation and the visible flow in the actual developing performance. The last part is summarized the attainment of system-developing. And at the same time, the insufficiency and the improvements are also included in this part.
Key words: workflow;flow define;visual;Java Applet
目 录
论文总页数:30页
1 引言 1
1.1 课题背景 1
1.2 技术可行性研究 1
1.2.1 Java Applet技术的可行性研究 1
1.2.2 XML技术的可行性研究 1
1.2.3 Microsoft Office Access 2003数据库的可行性研究 1
2 相关基础理论技术以及开发技术 1http://www.16sheji8.cn/
2.1工作流的定义与存在问题描述 2
2.1.1 OA中工作流的定义 2
2.1.2工作流中的流程定义问题 3
2.2 java applet和applet绘图技术的介绍 3
2.2.1 applet的介绍 3
2.2.2 Applet的AWT绘制 4
2.3系统环境与平台基础 5
3 系统需求分析与总体设计 5
3.1系统需求分析 5
3.2 系统功能介绍 5
3.3 系统模块功能和设计思想 6
3.4数据库设计 7
3.4.1 E-R图设计 7
3.4.2 表的构建 8
3.4.3 数据库连接实现 9
4 系统功能模块实现 9
4.2流程可视化设计实现 10
4.2.1界面可视化 10
4.2.2 绘图功能设计 11
4.2.3 流程图保存和读取方法设计 17
4.2.4 节点间关系保存的实现 23
5 系统测试结果及存在的问题和改进的方案 27
结 论 28
参考文献 28http://www.16sheji8.cn/
致 谢 29
声 明 30
1 引言
1.1 课题背景
办公自动化(OA-Office Automation)是将现代化办公和计算机网络功能结合起来的一种新型的办公方式,通过网络,组织机构内部的人员可跨越时间、地点协同工作。OA中涉及到诸多业务流程,流程的定义对与OA系统中业务的自动流转具有十分重要的意义,但是在一般B/S模式下的OA系统,对于流程的定义都是文字型或者表单形式的,而不是图形化的,因为基于HTML解析的B/S在绘图方面存在缺陷,因此大多B/S的OA系统在流程定义时,为了达到可视化的效果,都采用了流程定义用C/S来辅助。但是java中的applet技术可以实现在B/S下的绘图,因此,结合applet技术,可以在B/S系统中直接尝试流程的可视化定义研究。http://www.16sheji8.cn/
1.2 技术可行性研究
在对可视化流程设计工具的研究和实现过程中一共用到了三种技术:Java Applet、XML、Microsoft Office Access2003。在技术难度方面,由于有指导老师的指导和相关的参考文献,使得在开发过程中所遇到的困难都能够一一得到解决。