93e0d54f by 荆蔚杰

删除所有class文件和编译后文件夹

1 parent 617bfc68
Showing 1000 changed files with 0 additions and 260 deletions

Too many changes to show.

To preserve performance only 1000 of 1000+ files are displayed.

1 <?xml version="1.0" encoding="UTF-8"?>
2 <project name="act" default="welcome">
3
4 <!-- properties from key value -->
5 <property name="designs" value="designs" />
6 <property name="deployments" value="deployments" />
7
8 <!-- 显示欢迎信息以及操作提示 -->
9 <target name="welcome">
10 <echo>Activiti打包程序,请输入命令后操作!</echo>
11 </target>
12
13 <!-- 请假流程定义打包 -->
14 <target name="oa.leave">
15 <echo>打包流程定义:请假流程</echo>
16 <copy file="${designs}/oa/leave/leave.bpmn" tofile="${designs}/oa/leave/leave.bpmn20.xml" />
17 <zip destfile="${deployments}/oa/leave/leave.bar" basedir="${designs}/oa/leave" update="true" includes="*.xml,*.png" />
18 <delete file="${designs}/oa/leave/leave.bpmn20.xml" />
19 </target>
20
21 <!-- 请假流程定义打包-自定义表单 -->
22 <target name="oa.test_audit">
23 <echo>打包流程定义:测试审核流程</echo>
24 <copy file="${designs}/oa/test_audit/test_audit.bpmn" tofile="${designs}/oa/test_audit/test_audit.bpmn20.xml" />
25 <zip destfile="${deployments}/oa/test_audit/test_audit.bar" basedir="${designs}/oa/test_audit" update="true" includes="*.xml,*.png" />
26 <delete file="${designs}/oa/test_audit/test_audit.bpmn20.xml" />
27 </target>
28
29 </project>
1 <?xml version="1.0" encoding="UTF-8"?>
2 <definitions xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:activiti="http://activiti.org/bpmn" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:omgdc="http://www.omg.org/spec/DD/20100524/DC" xmlns:omgdi="http://www.omg.org/spec/DD/20100524/DI" typeLanguage="http://www.w3.org/2001/XMLSchema" expressionLanguage="http://www.w3.org/1999/XPath" targetNamespace="com.thinkgem.jeesite.modules.oa.leave">
3 <process id="leave" name="请假流程" isExecutable="true">
4 <documentation>请假流程演示</documentation>
5 <startEvent id="startevent1" name="Start" activiti:initiator="applyUserId"></startEvent>
6 <userTask id="deptLeaderAudit" name="部门领导审批" activiti:candidateGroups="dept"></userTask>
7 <exclusiveGateway id="exclusivegateway5" name="Exclusive Gateway"></exclusiveGateway>
8 <userTask id="modifyApply" name="调整申请" activiti:assignee="${applyUserId}">
9 <extensionElements>
10 <activiti:taskListener event="complete" delegateExpression="${leaveModifyProcessor}"></activiti:taskListener>
11 </extensionElements>
12 </userTask>
13 <userTask id="hrAudit" name="人事审批" activiti:candidateGroups="hr"></userTask>
14 <exclusiveGateway id="exclusivegateway6" name="Exclusive Gateway"></exclusiveGateway>
15 <userTask id="reportBack" name="销假" activiti:assignee="${applyUserId}">
16 <extensionElements>
17 <activiti:taskListener event="complete" delegateExpression="${leaveReportProcessor}"></activiti:taskListener>
18 </extensionElements>
19 </userTask>
20 <endEvent id="endevent1" name="End"></endEvent>
21 <exclusiveGateway id="exclusivegateway7" name="Exclusive Gateway"></exclusiveGateway>
22 <sequenceFlow id="flow2" sourceRef="startevent1" targetRef="deptLeaderAudit"></sequenceFlow>
23 <sequenceFlow id="flow3" sourceRef="deptLeaderAudit" targetRef="exclusivegateway5"></sequenceFlow>
24 <sequenceFlow id="flow4" name="不同意" sourceRef="exclusivegateway5" targetRef="modifyApply">
25 <conditionExpression xsi:type="tFormalExpression"><![CDATA[${!deptLeaderPass}]]></conditionExpression>
26 </sequenceFlow>
27 <sequenceFlow id="flow5" name="同意" sourceRef="exclusivegateway5" targetRef="hrAudit">
28 <conditionExpression xsi:type="tFormalExpression"><![CDATA[${deptLeaderPass}]]></conditionExpression>
29 </sequenceFlow>
30 <sequenceFlow id="flow6" sourceRef="hrAudit" targetRef="exclusivegateway6"></sequenceFlow>
31 <sequenceFlow id="flow7" name="同意" sourceRef="exclusivegateway6" targetRef="reportBack">
32 <conditionExpression xsi:type="tFormalExpression"><![CDATA[${hrPass}]]></conditionExpression>
33 </sequenceFlow>
34 <sequenceFlow id="flow8" sourceRef="reportBack" targetRef="endevent1"></sequenceFlow>
35 <sequenceFlow id="flow9" name="不同意" sourceRef="exclusivegateway6" targetRef="modifyApply">
36 <conditionExpression xsi:type="tFormalExpression"><![CDATA[${!hrPass}]]></conditionExpression>
37 </sequenceFlow>
38 <sequenceFlow id="flow10" name="重新申请" sourceRef="exclusivegateway7" targetRef="deptLeaderAudit">
39 <conditionExpression xsi:type="tFormalExpression"><![CDATA[${reApply}]]></conditionExpression>
40 </sequenceFlow>
41 <sequenceFlow id="flow11" sourceRef="modifyApply" targetRef="exclusivegateway7"></sequenceFlow>
42 <sequenceFlow id="flow12" name="结束流程" sourceRef="exclusivegateway7" targetRef="endevent1">
43 <conditionExpression xsi:type="tFormalExpression"><![CDATA[${!reApply}]]></conditionExpression>
44 </sequenceFlow>
45 </process>
46 <bpmndi:BPMNDiagram id="BPMNDiagram_leave">
47 <bpmndi:BPMNPlane bpmnElement="leave" id="BPMNPlane_leave">
48 <bpmndi:BPMNShape bpmnElement="startevent1" id="BPMNShape_startevent1">
49 <omgdc:Bounds height="35.0" width="35.0" x="10.0" y="90.0"></omgdc:Bounds>
50 </bpmndi:BPMNShape>
51 <bpmndi:BPMNShape bpmnElement="deptLeaderAudit" id="BPMNShape_deptLeaderAudit">
52 <omgdc:Bounds height="55.0" width="105.0" x="90.0" y="80.0"></omgdc:Bounds>
53 </bpmndi:BPMNShape>
54 <bpmndi:BPMNShape bpmnElement="exclusivegateway5" id="BPMNShape_exclusivegateway5">
55 <omgdc:Bounds height="40.0" width="40.0" x="250.0" y="87.0"></omgdc:Bounds>
56 </bpmndi:BPMNShape>
57 <bpmndi:BPMNShape bpmnElement="modifyApply" id="BPMNShape_modifyApply">
58 <omgdc:Bounds height="55.0" width="105.0" x="218.0" y="190.0"></omgdc:Bounds>
59 </bpmndi:BPMNShape>
60 <bpmndi:BPMNShape bpmnElement="hrAudit" id="BPMNShape_hrAudit">
61 <omgdc:Bounds height="55.0" width="105.0" x="358.0" y="80.0"></omgdc:Bounds>
62 </bpmndi:BPMNShape>
63 <bpmndi:BPMNShape bpmnElement="exclusivegateway6" id="BPMNShape_exclusivegateway6">
64 <omgdc:Bounds height="40.0" width="40.0" x="495.0" y="87.0"></omgdc:Bounds>
65 </bpmndi:BPMNShape>
66 <bpmndi:BPMNShape bpmnElement="reportBack" id="BPMNShape_reportBack">
67 <omgdc:Bounds height="55.0" width="105.0" x="590.0" y="80.0"></omgdc:Bounds>
68 </bpmndi:BPMNShape>
69 <bpmndi:BPMNShape bpmnElement="endevent1" id="BPMNShape_endevent1">
70 <omgdc:Bounds height="35.0" width="35.0" x="625.0" y="283.0"></omgdc:Bounds>
71 </bpmndi:BPMNShape>
72 <bpmndi:BPMNShape bpmnElement="exclusivegateway7" id="BPMNShape_exclusivegateway7">
73 <omgdc:Bounds height="40.0" width="40.0" x="250.0" y="280.0"></omgdc:Bounds>
74 </bpmndi:BPMNShape>
75 <bpmndi:BPMNEdge bpmnElement="flow2" id="BPMNEdge_flow2">
76 <omgdi:waypoint x="45.0" y="107.0"></omgdi:waypoint>
77 <omgdi:waypoint x="90.0" y="107.0"></omgdi:waypoint>
78 </bpmndi:BPMNEdge>
79 <bpmndi:BPMNEdge bpmnElement="flow3" id="BPMNEdge_flow3">
80 <omgdi:waypoint x="195.0" y="107.0"></omgdi:waypoint>
81 <omgdi:waypoint x="250.0" y="107.0"></omgdi:waypoint>
82 </bpmndi:BPMNEdge>
83 <bpmndi:BPMNEdge bpmnElement="flow4" id="BPMNEdge_flow4">
84 <omgdi:waypoint x="270.0" y="127.0"></omgdi:waypoint>
85 <omgdi:waypoint x="270.0" y="190.0"></omgdi:waypoint>
86 <bpmndi:BPMNLabel>
87 <omgdc:Bounds height="14.0" width="36.0" x="10.0" y="0.0"></omgdc:Bounds>
88 </bpmndi:BPMNLabel>
89 </bpmndi:BPMNEdge>
90 <bpmndi:BPMNEdge bpmnElement="flow5" id="BPMNEdge_flow5">
91 <omgdi:waypoint x="290.0" y="107.0"></omgdi:waypoint>
92 <omgdi:waypoint x="358.0" y="107.0"></omgdi:waypoint>
93 <bpmndi:BPMNLabel>
94 <omgdc:Bounds height="14.0" width="24.0" x="-24.0" y="-17.0"></omgdc:Bounds>
95 </bpmndi:BPMNLabel>
96 </bpmndi:BPMNEdge>
97 <bpmndi:BPMNEdge bpmnElement="flow6" id="BPMNEdge_flow6">
98 <omgdi:waypoint x="463.0" y="107.0"></omgdi:waypoint>
99 <omgdi:waypoint x="495.0" y="107.0"></omgdi:waypoint>
100 </bpmndi:BPMNEdge>
101 <bpmndi:BPMNEdge bpmnElement="flow7" id="BPMNEdge_flow7">
102 <omgdi:waypoint x="535.0" y="107.0"></omgdi:waypoint>
103 <omgdi:waypoint x="590.0" y="107.0"></omgdi:waypoint>
104 <bpmndi:BPMNLabel>
105 <omgdc:Bounds height="14.0" width="24.0" x="-22.0" y="-17.0"></omgdc:Bounds>
106 </bpmndi:BPMNLabel>
107 </bpmndi:BPMNEdge>
108 <bpmndi:BPMNEdge bpmnElement="flow8" id="BPMNEdge_flow8">
109 <omgdi:waypoint x="642.0" y="135.0"></omgdi:waypoint>
110 <omgdi:waypoint x="642.0" y="283.0"></omgdi:waypoint>
111 </bpmndi:BPMNEdge>
112 <bpmndi:BPMNEdge bpmnElement="flow9" id="BPMNEdge_flow9">
113 <omgdi:waypoint x="515.0" y="127.0"></omgdi:waypoint>
114 <omgdi:waypoint x="514.0" y="217.0"></omgdi:waypoint>
115 <omgdi:waypoint x="323.0" y="217.0"></omgdi:waypoint>
116 <bpmndi:BPMNLabel>
117 <omgdc:Bounds height="14.0" width="36.0" x="24.0" y="3.0"></omgdc:Bounds>
118 </bpmndi:BPMNLabel>
119 </bpmndi:BPMNEdge>
120 <bpmndi:BPMNEdge bpmnElement="flow10" id="BPMNEdge_flow10">
121 <omgdi:waypoint x="250.0" y="300.0"></omgdi:waypoint>
122 <omgdi:waypoint x="142.0" y="299.0"></omgdi:waypoint>
123 <omgdi:waypoint x="142.0" y="135.0"></omgdi:waypoint>
124 <bpmndi:BPMNLabel>
125 <omgdc:Bounds height="14.0" width="48.0" x="8.0" y="-1.0"></omgdc:Bounds>
126 </bpmndi:BPMNLabel>
127 </bpmndi:BPMNEdge>
128 <bpmndi:BPMNEdge bpmnElement="flow11" id="BPMNEdge_flow11">
129 <omgdi:waypoint x="270.0" y="245.0"></omgdi:waypoint>
130 <omgdi:waypoint x="270.0" y="280.0"></omgdi:waypoint>
131 </bpmndi:BPMNEdge>
132 <bpmndi:BPMNEdge bpmnElement="flow12" id="BPMNEdge_flow12">
133 <omgdi:waypoint x="290.0" y="300.0"></omgdi:waypoint>
134 <omgdi:waypoint x="625.0" y="300.0"></omgdi:waypoint>
135 <bpmndi:BPMNLabel>
136 <omgdc:Bounds height="14.0" width="48.0" x="-15.0" y="-20.0"></omgdc:Bounds>
137 </bpmndi:BPMNLabel>
138 </bpmndi:BPMNEdge>
139 </bpmndi:BPMNPlane>
140 </bpmndi:BPMNDiagram>
141 </definitions>
...\ No newline at end of file ...\ No newline at end of file
1 <?xml version="1.0" encoding="UTF-8"?>
2 <ehcache updateCheck="false" name="defaultCache">
3
4 <diskStore path="../temp/jeesite/ehcache" />
5
6 <!-- 默认缓存配置. -->
7 <defaultCache maxEntriesLocalHeap="100" eternal="false" timeToIdleSeconds="300" timeToLiveSeconds="600"
8 overflowToDisk="true" maxEntriesLocalDisk="100000" />
9
10 <!-- 系统缓存 -->
11 <cache name="sysCache" maxEntriesLocalHeap="100" eternal="true" overflowToDisk="true"/>
12
13 <!-- 用户缓存 -->
14 <cache name="userCache" maxEntriesLocalHeap="100" eternal="true" overflowToDisk="true"/>
15
16 <!-- 工作流模块缓存 -->
17 <cache name="actCache" maxEntriesLocalHeap="100" eternal="true" overflowToDisk="true"/>
18
19 <!-- 内容管理模块缓存
20 <cache name="cmsCache" maxEntriesLocalHeap="100" eternal="true" overflowToDisk="true"/> -->
21
22 <!-- 系统活动会话缓存 -->
23 <cache name="activeSessionsCache" maxEntriesLocalHeap="10000" overflowToDisk="true"
24 eternal="true" timeToLiveSeconds="0" timeToIdleSeconds="0"
25 diskPersistent="true" diskExpiryThreadIntervalSeconds="600"/>
26
27 <!-- 简单页面缓存
28 <cache name="SimplePageCachingFilter" maxEntriesLocalHeap="100" eternal="false" overflowToDisk="true"
29 timeToIdleSeconds="120" timeToLiveSeconds="120" memoryStoreEvictionPolicy="LFU"/> -->
30
31 </ehcache>
...\ No newline at end of file ...\ No newline at end of file
1 <?xml version="1.0" encoding="UTF-8"?>
2 <ehcache updateCheck="false" name="defaultCache">
3 <!--
4 <cacheManagerPeerProviderFactory class="net.sf.ehcache.distribution.RMICacheManagerPeerProviderFactory"
5 properties="peerDiscovery=manual, socketTimeoutMillis=2000, rmiUrls=//localhost:40001/defaultCache" />
6 <cacheManagerPeerListenerFactory class="net.sf.ehcache.distribution.RMICacheManagerPeerListenerFactory"
7 properties="hostName=localhost, port=40000, socketTimeoutMillis=2000"/> -->
8
9 <cacheManagerPeerProviderFactory class="net.sf.ehcache.distribution.RMICacheManagerPeerProviderFactory"
10 properties="peerDiscovery=automatic,multicastGroupAddress=230.0.0.1, multicastGroupPort=4446" />
11 <cacheManagerPeerListenerFactory class="net.sf.ehcache.distribution.RMICacheManagerPeerListenerFactory" />
12
13 <diskStore path="../temp/jeesite/ehcache" />
14
15 <!-- 默认缓存配置. -->
16 <defaultCache maxEntriesLocalHeap="100" eternal="false" timeToIdleSeconds="300" timeToLiveSeconds="600"
17 overflowToDisk="true" maxEntriesLocalDisk="100000" >
18 <cacheEventListenerFactory class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"
19 properties="replicatePuts=false,replicateUpdatesViaCopy=false"/>
20 </defaultCache>
21
22 <!-- 系统缓存 -->
23 <cache name="sysCache" maxEntriesLocalHeap="100" eternal="true" overflowToDisk="true">
24 <cacheEventListenerFactory class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"/>
25 </cache>
26
27 <!-- 用户缓存 -->
28 <cache name="userCache" maxEntriesLocalHeap="100" eternal="true" overflowToDisk="true">
29 <cacheEventListenerFactory class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"/>
30 </cache>
31
32 <!-- 工作流模块缓存 -->
33 <cache name="actCache" maxEntriesLocalHeap="100" eternal="true" overflowToDisk="true">
34 <cacheEventListenerFactory class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"/>
35 </cache>
36
37 <!-- 内容管理模块缓存
38 <cache name="cmsCache" maxEntriesLocalHeap="100" eternal="true" overflowToDisk="true">
39 <cacheEventListenerFactory class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"/>
40 </cache> -->
41
42 <!-- 系统活动会话缓存 -->
43 <cache name="activeSessionsCache" maxEntriesLocalHeap="10000" overflowToDisk="true"
44 eternal="true" timeToLiveSeconds="0" timeToIdleSeconds="0"
45 diskPersistent="true" diskExpiryThreadIntervalSeconds="600">
46 <cacheEventListenerFactory class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"
47 properties="replicateAsynchronously=true, replicatePuts=true, replicateUpdates=true,
48 replicateUpdatesViaCopy=false, replicateRemovals=true "/>
49 </cache>
50
51 <!-- 简单页面缓存
52 <cache name="SimplePageCachingFilter" maxEntriesLocalHeap="100" eternal="false" overflowToDisk="true"
53 timeToIdleSeconds="120" timeToLiveSeconds="120" memoryStoreEvictionPolicy="LFU">
54 <cacheEventListenerFactory class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"
55 properties="replicateAsynchronously=true, replicatePuts=true, replicateUpdates=true,
56 replicateUpdatesViaCopy=false, replicateRemovals=true "/>
57 </cache> -->
58
59 </ehcache>
...\ No newline at end of file ...\ No newline at end of file