实例介绍
应用Struts1 Spring2.5 Hibernate 实现 项目介绍:总体分机构管理、权限管理、公文流转、资产管理、系统管理、信息交流、信息发布、知识管理、项目管理、考勤管理、人事档案、我的工作台等模块,主要是为企业的部门之间提供一个能相互合作,提高工作效率的平台,实现企业的无纸化和协同办公,确保各部门之间的信息传输与交互,促进企业的信息化进程。
【实例截图】
【核心代码】
4744302543431075360.rar
└── myoa
├── build.xml
├── myprocessdefinition1.xml
├── readme.txt
├── src
│ ├── applicationContext-actions.xml
│ ├── applicationContext-beans.xml
│ ├── applicationContext-common.xml
│ ├── com
│ │ └── zhaohui
│ │ └── oa
│ │ ├── freemarker
│ │ │ ├── FreemarkerManager.java
│ │ │ └── templates
│ │ │ ├── document_form.ftl
│ │ │ └── select.ftl
│ │ ├── manager
│ │ │ ├── AclManager.java
│ │ │ ├── DocumentManager.java
│ │ │ ├── FormManager.java
│ │ │ ├── impl
│ │ │ │ ├── AbstractManager.java
│ │ │ │ ├── AclManagerImpl.java
│ │ │ │ ├── DocumentManagerImpl.java
│ │ │ │ ├── FormManagerImpl.java
│ │ │ │ ├── InitSystemDatasImpl.java
│ │ │ │ ├── JbpmFacadeImpl.java
│ │ │ │ ├── ModuleManagerImpl.java
│ │ │ │ ├── OrgManagerImpl.java
│ │ │ │ ├── PersonManagerImpl.java
│ │ │ │ ├── RoleManagerImpl.java
│ │ │ │ ├── UserManagerImpl.java
│ │ │ │ └── WorkflowManagerImpl.java
│ │ │ ├── InitSystemDatas.java
│ │ │ ├── JbpmFacade.java
│ │ │ ├── ModuleManager.java
│ │ │ ├── OrgManager.java
│ │ │ ├── PersonManager.java
│ │ │ ├── RoleManager.java
│ │ │ ├── UserManager.java
│ │ │ └── WorkflowManager.java
│ │ ├── model
│ │ │ ├── ACL.hbm.xml
│ │ │ ├── ACL.java
│ │ │ ├── ApproveInfo.hbm.xml
│ │ │ ├── ApproveInfo.java
│ │ │ ├── Document.hbm.xml
│ │ │ ├── Document.java
│ │ │ ├── DocumentProperty.hbm.xml
│ │ │ ├── DocumentProperty.java
│ │ │ ├── FieldInput.hbm.xml
│ │ │ ├── FieldInput.java
│ │ │ ├── FieldItem.java
│ │ │ ├── FieldType.hbm.xml
│ │ │ ├── FieldType.java
│ │ │ ├── FlowForm.hbm.xml
│ │ │ ├── FlowForm.java
│ │ │ ├── FormField.hbm.xml
│ │ │ ├── FormField.java
│ │ │ ├── Module.hbm.xml
│ │ │ ├── Module.java
│ │ │ ├── Organization.hbm.xml
│ │ │ ├── Organization.java
│ │ │ ├── Permission.java
│ │ │ ├── Person.hbm.xml
│ │ │ ├── Person.java
│ │ │ ├── Role.hbm.xml
│ │ │ ├── Role.java
│ │ │ ├── User.hbm.xml
│ │ │ ├── User.java
│ │ │ ├── UsersRoles.hbm.xml
│ │ │ ├── UsersRoles.java
│ │ │ ├── Workflow.hbm.xml
│ │ │ └── Workflow.java
│ │ ├── SystemContext.java
│ │ ├── util
│ │ │ ├── DB.java
│ │ │ ├── HibernateUtils.java
│ │ │ └── PagerModel.java
│ │ └── web
│ │ ├── actions
│ │ │ ├── AclAction.java
│ │ │ ├── BaseAction.java
│ │ │ ├── DocumentAction.java
│ │ │ ├── FlowFormAction.java
│ │ │ ├── IndexAction.java
│ │ │ ├── LoginAction.java
│ │ │ ├── ModuleActiom.java
│ │ │ ├── OrgAction.java
│ │ │ ├── PersonAction.java
│ │ │ ├── RoleAction.java
│ │ │ ├── UserAction.java
│ │ │ └── WorkflowAction.java
│ │ ├── AutoArrayList.java
│ │ ├── DynaFormFunction.java
│ │ ├── forms
│ │ │ ├── AclActionForm.java
│ │ │ ├── DocumentActionForm.java
│ │ │ ├── FlowFormActionForm.java
│ │ │ ├── ModuleActionForm.java
│ │ │ ├── OrgActionForm.java
│ │ │ ├── PersonActionForm.java
│ │ │ ├── RoleActionForm.java
│ │ │ ├── UserActionForm.java
│ │ │ └── WorkFlowActionForm.java
│ │ ├── InitServlet.java
│ │ ├── PagerFilter.java
│ │ ├── SecurityFunctions.java
│ │ ├── SystemExceptionHandler.java
│ │ ├── SystemException.java
│ │ └── UtilDateConverter.java
│ ├── hibernate.cfg.xml
│ ├── init_datas.xml
│ ├── jbpm.cfg.xml
│ ├── log4j.properties
│ ├── MessageResources.properties
│ └── test.java
├── test
│ └── com
│ └── zhaohui
│ └── oa
│ └── manager
│ └── impl
│ ├── BaseUnitTest.java
│ ├── DBExport.java
│ ├── InitSystemDatasTest.java
│ ├── OrgManagerImplTest.java
│ └── PersonManagerImplTest.java
└── WebRoot
├── acl
│ ├── index1.jsp
│ └── index.jsp
├── arrowdown.gif
├── arrowup.gif
├── back_index.jsp
├── common
│ ├── common.jsp
│ ├── exception.jsp
│ ├── my.jsp
│ ├── pub_add_success.jsp
│ ├── pub_del_success.jsp
│ └── pub_update_success.jsp
├── crossbrowser.js
├── document
│ ├── add_input.jsp
│ ├── approved_list.jsp
│ ├── approve_history.jsp
│ ├── approve_input.jsp
│ ├── approving_list.jsp
│ ├── index.jsp
│ ├── select_flow.jsp
│ └── submit_input.jsp
├── form
│ ├── formfield_input.jsp
│ ├── form_input.jsp
│ ├── index.jsp
│ └── item_input.jsp
├── images
│ ├── bot_footer_bar.gif
│ ├── client_login_bot_arc.gif
│ ├── client_login_left_arc.gif
│ ├── client_login_main_pic.jpg
│ ├── client_login_message_bar.gif
│ ├── client_login_submit.gif
│ ├── client_login_text_bg.gif
│ ├── client_login_title.gif
│ ├── interior_bot_nav_bar.gif
│ ├── nav_about_sim.gif
│ ├── nav_arrows.gif
│ ├── nav_client_access.gif
│ ├── nav_contact_request.gif
│ ├── nav_government_contracting.gif
│ ├── nav_homepage.gif
│ ├── nav_join_our_team.gif
│ ├── nav_our_services.gif
│ ├── sim_logo_top.gif
│ ├── sim_stylesheet.css
│ ├── spacer.gif
│ └── top_nav_bar.gif
├── index.jsp
├── mail.gif
├── main.jsp
├── META-INF
│ └── MANIFEST.MF
├── netm.gif
├── news.gif
├── org
│ ├── add_input.jsp
│ ├── index.jsp
│ ├── select_org.jsp
│ └── update_input.jsp
├── outlook.js
├── outlook.jsp
├── page
│ └── index.jsp
├── peditor.gif
├── person
│ ├── add_input.jsp
│ ├── index.jsp
│ └── update_input.jsp
├── role
│ ├── add_input.jsp
│ └── index.jsp
├── script
│ ├── dojo.js
│ └── public.js
├── style
│ ├── login.css
│ └── oa.css
├── user
│ ├── add_input.jsp
│ ├── index.jsp
│ ├── update_input.jsp
│ ├── user_role_input.jsp
│ └── user_role_list.jsp
├── WEB-INF
│ ├── classes
│ │ ├── applicationContext-actions.xml
│ │ ├── applicationContext-beans.xml
│ │ ├── applicationContext-common.xml
│ │ ├── com
│ │ │ └── zhaohui
│ │ │ └── oa
│ │ │ ├── freemarker
│ │ │ │ ├── FreemarkerManager.class
│ │ │ │ └── templates
│ │ │ │ ├── document_form.ftl
│ │ │ │ └── select.ftl
│ │ │ ├── manager
│ │ │ │ ├── AclManager.class
│ │ │ │ ├── DocumentManager.class
│ │ │ │ ├── FormManager.class
│ │ │ │ ├── impl
│ │ │ │ │ ├── AbstractManager.class
│ │ │ │ │ ├── AclManagerImpl.class
│ │ │ │ │ ├── BaseUnitTest.class
│ │ │ │ │ ├── DBExport.class
│ │ │ │ │ ├── DocumentManagerImpl.class
│ │ │ │ │ ├── FormManagerImpl.class
│ │ │ │ │ ├── InitSystemDatasImpl.class
│ │ │ │ │ ├── InitSystemDatasTest.class
│ │ │ │ │ ├── JbpmFacadeImpl.class
│ │ │ │ │ ├── ModuleManagerImpl.class
│ │ │ │ │ ├── OrgManagerImpl.class
│ │ │ │ │ ├── OrgManagerImplTest.class
│ │ │ │ │ ├── PersonManagerImpl.class
│ │ │ │ │ ├── PersonManagerImplTest.class
│ │ │ │ │ ├── RoleManagerImpl.class
│ │ │ │ │ ├── UserManagerImpl.class
│ │ │ │ │ └── WorkflowManagerImpl.class
│ │ │ │ ├── InitSystemDatas.class
│ │ │ │ ├── JbpmFacade.class
│ │ │ │ ├── ModuleManager.class
│ │ │ │ ├── OrgManager.class
│ │ │ │ ├── PersonManager.class
│ │ │ │ ├── RoleManager.class
│ │ │ │ ├── UserManager.class
│ │ │ │ └── WorkflowManager.class
│ │ │ ├── model
│ │ │ │ ├── ACL.class
│ │ │ │ ├── ACL.hbm.xml
│ │ │ │ ├── ApproveInfo.class
│ │ │ │ ├── ApproveInfo.hbm.xml
│ │ │ │ ├── Document.class
│ │ │ │ ├── Document.hbm.xml
│ │ │ │ ├── DocumentProperty.class
│ │ │ │ ├── DocumentProperty.hbm.xml
│ │ │ │ ├── FieldInput.class
│ │ │ │ ├── FieldInput.hbm.xml
│ │ │ │ ├── FieldItem.class
│ │ │ │ ├── FieldType.class
│ │ │ │ ├── FieldType.hbm.xml
│ │ │ │ ├── FlowForm.class
│ │ │ │ ├── FlowForm.hbm.xml
│ │ │ │ ├── FormField.class
│ │ │ │ ├── FormField.hbm.xml
│ │ │ │ ├── Module.class
│ │ │ │ ├── Module.hbm.xml
│ │ │ │ ├── Organization.class
│ │ │ │ ├── Organization.hbm.xml
│ │ │ │ ├── Permission.class
│ │ │ │ ├── Person.class
│ │ │ │ ├── Person.hbm.xml
│ │ │ │ ├── Role.class
│ │ │ │ ├── Role.hbm.xml
│ │ │ │ ├── User.class
│ │ │ │ ├── User.hbm.xml
│ │ │ │ ├── UsersRoles.class
│ │ │ │ ├── UsersRoles.hbm.xml
│ │ │ │ ├── Workflow.class
│ │ │ │ └── Workflow.hbm.xml
│ │ │ ├── SystemContext.class
│ │ │ ├── util
│ │ │ │ ├── DB.class
│ │ │ │ ├── HibernateUtils.class
│ │ │ │ └── PagerModel.class
│ │ │ └── web
│ │ │ ├── actions
│ │ │ │ ├── AclAction.class
│ │ │ │ ├── BaseAction.class
│ │ │ │ ├── DocumentAction.class
│ │ │ │ ├── FlowFormAction.class
│ │ │ │ ├── IndexAction.class
│ │ │ │ ├── LoginAction.class
│ │ │ │ ├── ModuleActiom.class
│ │ │ │ ├── OrgAction.class
│ │ │ │ ├── PersonAction.class
│ │ │ │ ├── RoleAction.class
│ │ │ │ ├── UserAction.class
│ │ │ │ └── WorkflowAction.class
│ │ │ ├── AutoArrayList.class
│ │ │ ├── DynaFormFunction.class
│ │ │ ├── forms
│ │ │ │ ├── AclActionForm.class
│ │ │ │ ├── DocumentActionForm.class
│ │ │ │ ├── FlowFormActionForm.class
│ │ │ │ ├── ModuleActionForm.class
│ │ │ │ ├── OrgActionForm.class
│ │ │ │ ├── PersonActionForm.class
│ │ │ │ ├── RoleActionForm.class
│ │ │ │ ├── UserActionForm.class
│ │ │ │ └── WorkFlowActionForm.class
│ │ │ ├── InitServlet.class
│ │ │ ├── PagerFilter.class
│ │ │ ├── SecurityFunctions.class
│ │ │ ├── SystemException.class
│ │ │ ├── SystemExceptionHandler.class
│ │ │ └── UtilDateConverter.class
│ │ ├── hibernate.cfg.xml
│ │ ├── init_datas.xml
│ │ ├── jbpm.cfg.xml
│ │ ├── log4j.properties
│ │ ├── MessageResources.properties
│ │ └── test.class
│ ├── dwr.xml
│ ├── lib
│ │ ├── ant-1.6.5.jar
│ │ ├── ant-antlr-1.6.5.jar
│ │ ├── ant-junit-1.6.5.jar
│ │ ├── ant-launcher-1.6.5.jar
│ │ ├── antlr-2.7.6.jar
│ │ ├── antlr.license.txt
│ │ ├── ant-swing-1.6.5.jar
│ │ ├── apache.license-2.0.txt
│ │ ├── apache.license.txt
│ │ ├── asm-attrs.jar
│ │ ├── asm.jar
│ │ ├── aspectjrt.jar
│ │ ├── aspectjweaver.jar
│ │ ├── bsh.jar
│ │ ├── c3p0-0.9.0.jar
│ │ ├── c3p0.license.txt
│ │ ├── cglib-2.1.3.jar
│ │ ├── checkstyle-all.jar
│ │ ├── cleanimports.jar
│ │ ├── commons-beanutils.jar
│ │ ├── commons-collections-2.1.1.jar
│ │ ├── commons-digester.jar
│ │ ├── commons-fileupload.jar
│ │ ├── commons-logging-1.0.4.jar
│ │ ├── commons-validator.jar
│ │ ├── concurrent-1.3.2.jar
│ │ ├── connector.jar
│ │ ├── connector.licence.txt
│ │ ├── dom4j-1.6.1.jar
│ │ ├── dwr.jar
│ │ ├── ehcache-1.2.jar
│ │ ├── freemarker.jar
│ │ ├── hibernate3.jar
│ │ ├── jaas.jar
│ │ ├── jaas.licence.txt
│ │ ├── jacc-1_0-fr.jar
│ │ ├── jakarta-oro.jar
│ │ ├── javassist.jar
│ │ ├── jaxen-1.1-beta-7.jar
│ │ ├── jboss-cache.jar
│ │ ├── jboss-common.jar
│ │ ├── jboss-jmx.jar
│ │ ├── jboss-system.jar
│ │ ├── jbpm-identity.jar
│ │ ├── jbpm-jpdl.jar
│ │ ├── jcr-1.0.jar
│ │ ├── jdbc2_0-stdext.jar
│ │ ├── jdbc2_0-stdext.licence.txt
│ │ ├── jgroups-2.2.8.jar
│ │ ├── jstl.jar
│ │ ├── jta.jar
│ │ ├── jta.licence.txt
│ │ ├── junit-3.8.1.jar
│ │ ├── log4j-1.2.11.jar
│ │ ├── mysql-connector-java-3.1.13-bin.jar
│ │ ├── oscache-2.1.jar
│ │ ├── pager-taglib.jar
│ │ ├── proxool-0.8.3.jar
│ │ ├── _README.txt
│ │ ├── spring.jar
│ │ ├── spring-mock.jar
│ │ ├── spring-modules-jbpm31.jar
│ │ ├── standard.jar
│ │ ├── struts.jar
│ │ ├── swarmcache-1.0rc2.jar
│ │ ├── syndiag2.jar
│ │ ├── versioncheck.jar
│ │ ├── version.properties
│ │ ├── xerces-2.6.2.jar
│ │ └── xml-apis.jar
│ ├── myfunctions.tld
│ ├── struts-config.xml
│ └── web.xml
├── word.gif
└── workflow
└── index.jsp
50 directories, 362 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论