93e0d54f by 荆蔚杰

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

1 parent 617bfc68
Showing 1000 changed files with 0 additions and 431 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 <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="http://www.activiti.org/test">
3 <process id="test_audit" name="流程审批测试流程" isExecutable="true">
4 <startEvent id="start" name="启动审批" activiti:initiator="apply" activiti:formKey="/oa/testAudit/form"/>
5 <endEvent id="end" name="结束审批"/>
6 <userTask id="modify" name="员工薪酬档级修改" activiti:assignee="${apply}"/>
7 <userTask id="audit" name="薪酬主管初审" activiti:assignee="thinkgem"/>
8 <exclusiveGateway id="sid-C28BB5F6-013D-4570-B432-61B380C1F46F"/>
9 <userTask id="audit2" name="集团人力资源部部长审核" activiti:assignee="thinkgem"/>
10 <exclusiveGateway id="sid-ED46FE41-A0FD-496D-86DC-2C97AF5735F0"/>
11 <sequenceFlow id="sid-EF2F51BB-1D99-4F0B-ACF2-B6C1300A7D2B" sourceRef="audit2" targetRef="sid-ED46FE41-A0FD-496D-86DC-2C97AF5735F0"/>
12 <userTask id="audit3" name="集团人力资源部分管领导审核" activiti:assignee="thinkgem"/>
13 <exclusiveGateway id="sid-FE485B2D-9A23-4236-BD0D-D788CA6E30E4"/>
14 <sequenceFlow id="sid-3DBCD661-5720-4480-8156-748BE0275FEF" sourceRef="audit3" targetRef="sid-FE485B2D-9A23-4236-BD0D-D788CA6E30E4"/>
15 <userTask id="audit4" name="集团总经理审批" activiti:assignee="thinkgem"/>
16 <exclusiveGateway id="sid-3F53B6BD-F8F3-496B-AC08-50630BD11477"/>
17 <userTask id="apply_end" name="薪酬档级兑现" activiti:assignee="thinkgem"/>
18 <sequenceFlow id="sid-02DB2AD9-1332-4198-AC8D-22A35169D15C" sourceRef="audit4" targetRef="sid-3F53B6BD-F8F3-496B-AC08-50630BD11477"/>
19 <sequenceFlow id="sid-2AB7C01A-50EE-4AAC-8C8F-F6E1935B3DA7" sourceRef="audit" targetRef="sid-C28BB5F6-013D-4570-B432-61B380C1F46F"/>
20 <sequenceFlow id="sid-36E50C8B-6C7C-4968-B02D-EBAA425BF4BE" sourceRef="start" targetRef="audit"/>
21 <sequenceFlow id="sid-7D723190-1432-411D-A4A4-774225E54CD9" name="是" sourceRef="sid-3F53B6BD-F8F3-496B-AC08-50630BD11477" targetRef="apply_end">
22 <conditionExpression xsi:type="tFormalExpression"><![CDATA[${pass==1}]]></conditionExpression>
23 </sequenceFlow>
24 <sequenceFlow id="sid-D44CAD43-0271-4920-A524-9B8533E52550" name="是" sourceRef="sid-FE485B2D-9A23-4236-BD0D-D788CA6E30E4" targetRef="audit4">
25 <conditionExpression xsi:type="tFormalExpression"><![CDATA[${pass==1}]]></conditionExpression>
26 </sequenceFlow>
27 <sequenceFlow id="sid-53258502-43EE-4DE8-B1A4-DBD11922B8AF" name="否" sourceRef="sid-C28BB5F6-013D-4570-B432-61B380C1F46F" targetRef="modify">
28 <conditionExpression xsi:type="tFormalExpression"><![CDATA[${pass==0}]]></conditionExpression>
29 </sequenceFlow>
30 <exclusiveGateway id="sid-5FED02D6-C388-48C6-870E-097DB2131EA0"/>
31 <sequenceFlow id="sid-163DBC60-DBC9-438B-971A-67738FB7715A" sourceRef="modify" targetRef="sid-5FED02D6-C388-48C6-870E-097DB2131EA0"/>
32 <sequenceFlow id="sid-72258A41-203E-428C-B71D-CA3506252D73" name="是" sourceRef="sid-C28BB5F6-013D-4570-B432-61B380C1F46F" targetRef="audit2">
33 <conditionExpression xsi:type="tFormalExpression"><![CDATA[${pass==1}]]></conditionExpression>
34 </sequenceFlow>
35 <sequenceFlow id="sid-8448EF4A-B62E-4899-ABC2-0E2DB2AE6838" name="重新申请" sourceRef="sid-5FED02D6-C388-48C6-870E-097DB2131EA0" targetRef="audit">
36 <conditionExpression xsi:type="tFormalExpression"><![CDATA[${pass==1}]]></conditionExpression>
37 </sequenceFlow>
38 <sequenceFlow id="sid-A7589084-4623-4FEA-A774-00A70DDC1D20" name="是" sourceRef="sid-ED46FE41-A0FD-496D-86DC-2C97AF5735F0" targetRef="audit3">
39 <conditionExpression xsi:type="tFormalExpression"><![CDATA[${pass==1}]]></conditionExpression>
40 </sequenceFlow>
41 <sequenceFlow id="sid-FA618636-3708-4D0C-8514-29A4BB8BC926" name="否" sourceRef="sid-ED46FE41-A0FD-496D-86DC-2C97AF5735F0" targetRef="modify">
42 <conditionExpression xsi:type="tFormalExpression"><![CDATA[${pass==0}]]></conditionExpression>
43 </sequenceFlow>
44 <sequenceFlow id="sid-1525BFF4-3E9D-4D8A-BF80-1F63AFE16289" name="否" sourceRef="sid-FE485B2D-9A23-4236-BD0D-D788CA6E30E4" targetRef="modify">
45 <conditionExpression xsi:type="tFormalExpression"><![CDATA[${pass==0}]]></conditionExpression>
46 </sequenceFlow>
47 <sequenceFlow id="sid-35CC8C6C-1067-4398-991C-CCF955115965" name="否" sourceRef="sid-3F53B6BD-F8F3-496B-AC08-50630BD11477" targetRef="modify">
48 <conditionExpression xsi:type="tFormalExpression"><![CDATA[${pass==0}]]></conditionExpression>
49 </sequenceFlow>
50 <sequenceFlow id="sid-BDB0AAB2-7E50-4D35-80EE-CE0BECDD9F57" sourceRef="apply_end" targetRef="end"/>
51 <sequenceFlow id="sid-44AFB9C1-4057-4C48-B1F2-1EC897A52CB7" name="销毁" sourceRef="sid-5FED02D6-C388-48C6-870E-097DB2131EA0" targetRef="end">
52 <conditionExpression xsi:type="tFormalExpression"><![CDATA[${pass==0}]]></conditionExpression>
53 </sequenceFlow>
54 </process>
55 <bpmndi:BPMNDiagram id="BPMNDiagram_test_audit">
56 <bpmndi:BPMNPlane bpmnElement="test_audit" id="BPMNPlane_test_audit">
57 <bpmndi:BPMNShape bpmnElement="start" id="BPMNShape_start">
58 <omgdc:Bounds height="30.0" width="30.0" x="30.0" y="245.0"/>
59 </bpmndi:BPMNShape>
60 <bpmndi:BPMNShape bpmnElement="end" id="BPMNShape_end">
61 <omgdc:Bounds height="28.0" width="28.0" x="975.0" y="356.0"/>
62 </bpmndi:BPMNShape>
63 <bpmndi:BPMNShape bpmnElement="modify" id="BPMNShape_modify">
64 <omgdc:Bounds height="58.0" width="102.0" x="209.0" y="135.0"/>
65 </bpmndi:BPMNShape>
66 <bpmndi:BPMNShape bpmnElement="audit" id="BPMNShape_audit">
67 <omgdc:Bounds height="57.0" width="96.0" x="105.0" y="231.5"/>
68 </bpmndi:BPMNShape>
69 <bpmndi:BPMNShape bpmnElement="sid-C28BB5F6-013D-4570-B432-61B380C1F46F" id="BPMNShape_sid-C28BB5F6-013D-4570-B432-61B380C1F46F">
70 <omgdc:Bounds height="40.0" width="40.0" x="240.0" y="240.0"/>
71 </bpmndi:BPMNShape>
72 <bpmndi:BPMNShape bpmnElement="audit2" id="BPMNShape_audit2">
73 <omgdc:Bounds height="80.0" width="100.0" x="210.0" y="330.0"/>
74 </bpmndi:BPMNShape>
75 <bpmndi:BPMNShape bpmnElement="sid-ED46FE41-A0FD-496D-86DC-2C97AF5735F0" id="BPMNShape_sid-ED46FE41-A0FD-496D-86DC-2C97AF5735F0">
76 <omgdc:Bounds height="40.0" width="40.0" x="345.0" y="350.0"/>
77 </bpmndi:BPMNShape>
78 <bpmndi:BPMNShape bpmnElement="audit3" id="BPMNShape_audit3">
79 <omgdc:Bounds height="80.0" width="100.0" x="420.0" y="330.0"/>
80 </bpmndi:BPMNShape>
81 <bpmndi:BPMNShape bpmnElement="sid-FE485B2D-9A23-4236-BD0D-D788CA6E30E4" id="BPMNShape_sid-FE485B2D-9A23-4236-BD0D-D788CA6E30E4">
82 <omgdc:Bounds height="40.0" width="40.0" x="555.0" y="350.0"/>
83 </bpmndi:BPMNShape>
84 <bpmndi:BPMNShape bpmnElement="audit4" id="BPMNShape_audit4">
85 <omgdc:Bounds height="80.0" width="100.0" x="630.0" y="330.0"/>
86 </bpmndi:BPMNShape>
87 <bpmndi:BPMNShape bpmnElement="sid-3F53B6BD-F8F3-496B-AC08-50630BD11477" id="BPMNShape_sid-3F53B6BD-F8F3-496B-AC08-50630BD11477">
88 <omgdc:Bounds height="40.0" width="40.0" x="765.0" y="350.0"/>
89 </bpmndi:BPMNShape>
90 <bpmndi:BPMNShape bpmnElement="apply_end" id="BPMNShape_apply_end">
91 <omgdc:Bounds height="80.0" width="100.0" x="840.0" y="330.0"/>
92 </bpmndi:BPMNShape>
93 <bpmndi:BPMNShape bpmnElement="sid-5FED02D6-C388-48C6-870E-097DB2131EA0" id="BPMNShape_sid-5FED02D6-C388-48C6-870E-097DB2131EA0">
94 <omgdc:Bounds height="40.0" width="40.0" x="240.0" y="45.0"/>
95 </bpmndi:BPMNShape>
96 <bpmndi:BPMNEdge bpmnElement="sid-3DBCD661-5720-4480-8156-748BE0275FEF" id="BPMNEdge_sid-3DBCD661-5720-4480-8156-748BE0275FEF">
97 <omgdi:waypoint x="520.0" y="370.0"/>
98 <omgdi:waypoint x="555.0" y="370.0"/>
99 </bpmndi:BPMNEdge>
100 <bpmndi:BPMNEdge bpmnElement="sid-44AFB9C1-4057-4C48-B1F2-1EC897A52CB7" id="BPMNEdge_sid-44AFB9C1-4057-4C48-B1F2-1EC897A52CB7">
101 <omgdi:waypoint x="280.0" y="65.0"/>
102 <omgdi:waypoint x="989.0" y="65.0"/>
103 <omgdi:waypoint x="989.0" y="356.0"/>
104 </bpmndi:BPMNEdge>
105 <bpmndi:BPMNEdge bpmnElement="sid-8448EF4A-B62E-4899-ABC2-0E2DB2AE6838" id="BPMNEdge_sid-8448EF4A-B62E-4899-ABC2-0E2DB2AE6838">
106 <omgdi:waypoint x="240.0" y="65.0"/>
107 <omgdi:waypoint x="153.0" y="65.0"/>
108 <omgdi:waypoint x="153.0" y="231.5"/>
109 </bpmndi:BPMNEdge>
110 <bpmndi:BPMNEdge bpmnElement="sid-A7589084-4623-4FEA-A774-00A70DDC1D20" id="BPMNEdge_sid-A7589084-4623-4FEA-A774-00A70DDC1D20">
111 <omgdi:waypoint x="385.0" y="370.0"/>
112 <omgdi:waypoint x="420.0" y="370.0"/>
113 </bpmndi:BPMNEdge>
114 <bpmndi:BPMNEdge bpmnElement="sid-35CC8C6C-1067-4398-991C-CCF955115965" id="BPMNEdge_sid-35CC8C6C-1067-4398-991C-CCF955115965">
115 <omgdi:waypoint x="785.0" y="350.0"/>
116 <omgdi:waypoint x="785.0" y="164.0"/>
117 <omgdi:waypoint x="311.0" y="164.0"/>
118 </bpmndi:BPMNEdge>
119 <bpmndi:BPMNEdge bpmnElement="sid-EF2F51BB-1D99-4F0B-ACF2-B6C1300A7D2B" id="BPMNEdge_sid-EF2F51BB-1D99-4F0B-ACF2-B6C1300A7D2B">
120 <omgdi:waypoint x="310.0" y="370.0"/>
121 <omgdi:waypoint x="345.0" y="370.0"/>
122 </bpmndi:BPMNEdge>
123 <bpmndi:BPMNEdge bpmnElement="sid-7D723190-1432-411D-A4A4-774225E54CD9" id="BPMNEdge_sid-7D723190-1432-411D-A4A4-774225E54CD9">
124 <omgdi:waypoint x="805.0" y="370.0"/>
125 <omgdi:waypoint x="840.0" y="370.0"/>
126 </bpmndi:BPMNEdge>
127 <bpmndi:BPMNEdge bpmnElement="sid-2AB7C01A-50EE-4AAC-8C8F-F6E1935B3DA7" id="BPMNEdge_sid-2AB7C01A-50EE-4AAC-8C8F-F6E1935B3DA7">
128 <omgdi:waypoint x="201.0" y="260.0"/>
129 <omgdi:waypoint x="240.0" y="260.0"/>
130 </bpmndi:BPMNEdge>
131 <bpmndi:BPMNEdge bpmnElement="sid-D44CAD43-0271-4920-A524-9B8533E52550" id="BPMNEdge_sid-D44CAD43-0271-4920-A524-9B8533E52550">
132 <omgdi:waypoint x="595.0" y="370.0"/>
133 <omgdi:waypoint x="630.0" y="370.0"/>
134 </bpmndi:BPMNEdge>
135 <bpmndi:BPMNEdge bpmnElement="sid-FA618636-3708-4D0C-8514-29A4BB8BC926" id="BPMNEdge_sid-FA618636-3708-4D0C-8514-29A4BB8BC926">
136 <omgdi:waypoint x="365.0" y="350.0"/>
137 <omgdi:waypoint x="365.0" y="164.0"/>
138 <omgdi:waypoint x="311.0" y="164.0"/>
139 </bpmndi:BPMNEdge>
140 <bpmndi:BPMNEdge bpmnElement="sid-02DB2AD9-1332-4198-AC8D-22A35169D15C" id="BPMNEdge_sid-02DB2AD9-1332-4198-AC8D-22A35169D15C">
141 <omgdi:waypoint x="730.0" y="370.0"/>
142 <omgdi:waypoint x="765.0" y="370.0"/>
143 </bpmndi:BPMNEdge>
144 <bpmndi:BPMNEdge bpmnElement="sid-36E50C8B-6C7C-4968-B02D-EBAA425BF4BE" id="BPMNEdge_sid-36E50C8B-6C7C-4968-B02D-EBAA425BF4BE">
145 <omgdi:waypoint x="60.0" y="260.0"/>
146 <omgdi:waypoint x="105.0" y="260.0"/>
147 </bpmndi:BPMNEdge>
148 <bpmndi:BPMNEdge bpmnElement="sid-53258502-43EE-4DE8-B1A4-DBD11922B8AF" id="BPMNEdge_sid-53258502-43EE-4DE8-B1A4-DBD11922B8AF">
149 <omgdi:waypoint x="260.0" y="240.0"/>
150 <omgdi:waypoint x="260.0" y="193.0"/>
151 </bpmndi:BPMNEdge>
152 <bpmndi:BPMNEdge bpmnElement="sid-163DBC60-DBC9-438B-971A-67738FB7715A" id="BPMNEdge_sid-163DBC60-DBC9-438B-971A-67738FB7715A">
153 <omgdi:waypoint x="260.0" y="135.0"/>
154 <omgdi:waypoint x="260.0" y="85.0"/>
155 </bpmndi:BPMNEdge>
156 <bpmndi:BPMNEdge bpmnElement="sid-BDB0AAB2-7E50-4D35-80EE-CE0BECDD9F57" id="BPMNEdge_sid-BDB0AAB2-7E50-4D35-80EE-CE0BECDD9F57">
157 <omgdi:waypoint x="940.0" y="370.0"/>
158 <omgdi:waypoint x="975.0" y="370.0"/>
159 </bpmndi:BPMNEdge>
160 <bpmndi:BPMNEdge bpmnElement="sid-1525BFF4-3E9D-4D8A-BF80-1F63AFE16289" id="BPMNEdge_sid-1525BFF4-3E9D-4D8A-BF80-1F63AFE16289">
161 <omgdi:waypoint x="575.0" y="350.0"/>
162 <omgdi:waypoint x="575.0" y="164.0"/>
163 <omgdi:waypoint x="311.0" y="164.0"/>
164 </bpmndi:BPMNEdge>
165 <bpmndi:BPMNEdge bpmnElement="sid-72258A41-203E-428C-B71D-CA3506252D73" id="BPMNEdge_sid-72258A41-203E-428C-B71D-CA3506252D73">
166 <omgdi:waypoint x="260.0" y="280.0"/>
167 <omgdi:waypoint x="260.0" y="330.0"/>
168 </bpmndi:BPMNEdge>
169 </bpmndi:BPMNPlane>
170 </bpmndi:BPMNDiagram>
171 </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