Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
F
flowable-test
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
mry
flowable-test
Commits
1fe0ba26
提交
1fe0ba26
authored
9月 08, 2022
作者:
mry
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix(flowable): 修改配置文件
上级
5ca87f23
显示空白字符变更
内嵌
并排
正在显示
9 个修改的文件
包含
5 行增加
和
162 行删除
+5
-162
application.yml
src/main/resources/application.yml
+5
-1
application.yml
target/classes/application.yml
+0
-35
ExpenseProcess.bpmn20.xml
target/classes/processes/ExpenseProcess.bpmn20.xml
+0
-109
flowable-springboot-0.0.1-SNAPSHOT.jar.original
target/flowable-springboot-0.0.1-SNAPSHOT.jar.original
+0
-0
pom.properties
target/maven-archiver/pom.properties
+0
-3
createdFiles.lst
...-compiler-plugin/compile/default-compile/createdFiles.lst
+0
-6
inputFiles.lst
...en-compiler-plugin/compile/default-compile/inputFiles.lst
+0
-6
createdFiles.lst
...r-plugin/testCompile/default-testCompile/createdFiles.lst
+0
-1
inputFiles.lst
...ler-plugin/testCompile/default-testCompile/inputFiles.lst
+0
-1
没有找到文件。
src/main/resources/application.yml
浏览文件 @
1fe0ba26
...
...
@@ -6,7 +6,11 @@ server:
spring
:
profiles
:
active
:
dev
##########################################################
# jpa:
# properties:
# hibernate:
# dialect: org.hibernate.dialect.DmDialect
##########################################################
################### 开发环境的profile ###################
##########################################################
datasource
:
...
...
target/classes/application.yml
deleted
100644 → 0
浏览文件 @
5ca87f23
################### 项目启动端口 ###################
server
:
port
:
8080
################### spring配置 ###################
spring
:
profiles
:
active
:
dev
##########################################################
################### 开发环境的profile ###################
##########################################################
datasource
:
url
:
jdbc:mysql://127.0.0.1:3306/test?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=UTC
username
:
root
password
:
root
driver-class-name
:
com.mysql.cj.jdbc.Driver
# datasource:
# url: jdbc:mysql://127.0.0.1:3306/test?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=UTC
# username: SYSDBA
# password: SYSDBA
# driver-class-name: dm.jdbc.driver.DmDriver
#logging:
# level.root: info
# level.com.haiyang: debug
# path: logs/
# file: flowable-test.log
#
#
#---
#logging:
# level.root: warn
# path: logs/
# file: flowable-test.log
\ No newline at end of file
target/classes/processes/ExpenseProcess.bpmn20.xml
deleted
100644 → 0
浏览文件 @
5ca87f23
<?xml version="1.0" encoding="UTF-8"?>
<definitions
xmlns=
"http://www.omg.org/spec/BPMN/20100524/MODEL"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xmlns:flowable=
"http://flowable.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.flowable.org/processdef"
>
<process
id=
"Expense"
name=
"ExpenseProcess"
isExecutable=
"true"
>
<documentation>
报销流程
</documentation>
<startEvent
id=
"start"
name=
"开始"
></startEvent>
<userTask
id=
"fillTask"
name=
"出差报销"
flowable:assignee=
"${taskUser}"
>
<extensionElements>
<modeler:initiator-can-complete
xmlns:modeler=
"http://flowable.org/modeler"
>
<![CDATA[false]]>
</modeler:initiator-can-complete>
</extensionElements>
</userTask>
<exclusiveGateway
id=
"judgeTask"
></exclusiveGateway>
<userTask
id=
"directorTak"
name=
"经理审批"
>
<extensionElements>
<flowable:taskListener
event=
"create"
class=
"com.haiyang.flowablespringboot.handler.ManagerTaskHandler"
></flowable:taskListener>
</extensionElements>
</userTask>
<userTask
id=
"bossTask"
name=
"老板审批"
>
<extensionElements>
<flowable:taskListener
event=
"create"
class=
"com.haiyang.flowablespringboot.handler.BossTaskHandler"
></flowable:taskListener>
</extensionElements>
</userTask>
<endEvent
id=
"end"
name=
"结束"
></endEvent>
<sequenceFlow
id=
"directorNotPassFlow"
name=
"驳回"
sourceRef=
"directorTak"
targetRef=
"fillTask"
>
<conditionExpression
xsi:type=
"tFormalExpression"
>
<![CDATA[${outcome=='驳回'}]]>
</conditionExpression>
</sequenceFlow>
<sequenceFlow
id=
"bossNotPassFlow"
name=
"驳回"
sourceRef=
"bossTask"
targetRef=
"fillTask"
>
<conditionExpression
xsi:type=
"tFormalExpression"
>
<![CDATA[${outcome=='驳回'}]]>
</conditionExpression>
</sequenceFlow>
<sequenceFlow
id=
"flow1"
sourceRef=
"start"
targetRef=
"fillTask"
></sequenceFlow>
<sequenceFlow
id=
"flow2"
sourceRef=
"fillTask"
targetRef=
"judgeTask"
></sequenceFlow>
<sequenceFlow
id=
"judgeMore"
name=
"大于500元"
sourceRef=
"judgeTask"
targetRef=
"bossTask"
>
<conditionExpression
xsi:type=
"tFormalExpression"
>
<![CDATA[${money > 500}]]>
</conditionExpression>
</sequenceFlow>
<sequenceFlow
id=
"bossPassFlow"
name=
"通过"
sourceRef=
"bossTask"
targetRef=
"end"
>
<conditionExpression
xsi:type=
"tFormalExpression"
>
<![CDATA[${outcome=='通过'}]]>
</conditionExpression>
</sequenceFlow>
<sequenceFlow
id=
"directorPassFlow"
name=
"通过"
sourceRef=
"directorTak"
targetRef=
"end"
>
<conditionExpression
xsi:type=
"tFormalExpression"
>
<![CDATA[${outcome=='通过'}]]>
</conditionExpression>
</sequenceFlow>
<sequenceFlow
id=
"judgeLess"
name=
"小于500元"
sourceRef=
"judgeTask"
targetRef=
"directorTak"
>
<conditionExpression
xsi:type=
"tFormalExpression"
>
<![CDATA[${money <= 500}]]>
</conditionExpression>
</sequenceFlow>
</process>
<bpmndi:BPMNDiagram
id=
"BPMNDiagram_Expense"
>
<bpmndi:BPMNPlane
bpmnElement=
"Expense"
id=
"BPMNPlane_Expense"
>
<bpmndi:BPMNShape
bpmnElement=
"start"
id=
"BPMNShape_start"
>
<omgdc:Bounds
height=
"30.0"
width=
"30.0"
x=
"285.0"
y=
"135.0"
></omgdc:Bounds>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape
bpmnElement=
"fillTask"
id=
"BPMNShape_fillTask"
>
<omgdc:Bounds
height=
"80.0"
width=
"100.0"
x=
"405.0"
y=
"110.0"
></omgdc:Bounds>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape
bpmnElement=
"judgeTask"
id=
"BPMNShape_judgeTask"
>
<omgdc:Bounds
height=
"40.0"
width=
"40.0"
x=
"585.0"
y=
"130.0"
></omgdc:Bounds>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape
bpmnElement=
"directorTak"
id=
"BPMNShape_directorTak"
>
<omgdc:Bounds
height=
"80.0"
width=
"100.0"
x=
"735.0"
y=
"110.0"
></omgdc:Bounds>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape
bpmnElement=
"bossTask"
id=
"BPMNShape_bossTask"
>
<omgdc:Bounds
height=
"80.0"
width=
"100.0"
x=
"555.0"
y=
"255.0"
></omgdc:Bounds>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape
bpmnElement=
"end"
id=
"BPMNShape_end"
>
<omgdc:Bounds
height=
"28.0"
width=
"28.0"
x=
"771.0"
y=
"281.0"
></omgdc:Bounds>
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge
bpmnElement=
"flow1"
id=
"BPMNEdge_flow1"
>
<omgdi:waypoint
x=
"315.0"
y=
"150.0"
></omgdi:waypoint>
<omgdi:waypoint
x=
"405.0"
y=
"150.0"
></omgdi:waypoint>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge
bpmnElement=
"flow2"
id=
"BPMNEdge_flow2"
>
<omgdi:waypoint
x=
"505.0"
y=
"150.16611295681062"
></omgdi:waypoint>
<omgdi:waypoint
x=
"585.4333333333333"
y=
"150.43333333333334"
></omgdi:waypoint>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge
bpmnElement=
"judgeLess"
id=
"BPMNEdge_judgeLess"
>
<omgdi:waypoint
x=
"624.5530726256983"
y=
"150.44692737430168"
></omgdi:waypoint>
<omgdi:waypoint
x=
"735.0"
y=
"150.1392757660167"
></omgdi:waypoint>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge
bpmnElement=
"directorNotPassFlow"
id=
"BPMNEdge_directorNotPassFlow"
>
<omgdi:waypoint
x=
"785.0"
y=
"110.0"
></omgdi:waypoint>
<omgdi:waypoint
x=
"785.0"
y=
"37.0"
></omgdi:waypoint>
<omgdi:waypoint
x=
"455.0"
y=
"37.0"
></omgdi:waypoint>
<omgdi:waypoint
x=
"455.0"
y=
"110.0"
></omgdi:waypoint>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge
bpmnElement=
"bossPassFlow"
id=
"BPMNEdge_bossPassFlow"
>
<omgdi:waypoint
x=
"655.0"
y=
"295.0"
></omgdi:waypoint>
<omgdi:waypoint
x=
"771.0"
y=
"295.0"
></omgdi:waypoint>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge
bpmnElement=
"judgeMore"
id=
"BPMNEdge_judgeMore"
>
<omgdi:waypoint
x=
"605.4340277777778"
y=
"169.56597222222223"
></omgdi:waypoint>
<omgdi:waypoint
x=
"605.1384083044983"
y=
"255.0"
></omgdi:waypoint>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge
bpmnElement=
"directorPassFlow"
id=
"BPMNEdge_directorPassFlow"
>
<omgdi:waypoint
x=
"785.0"
y=
"190.0"
></omgdi:waypoint>
<omgdi:waypoint
x=
"785.0"
y=
"281.0"
></omgdi:waypoint>
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge
bpmnElement=
"bossNotPassFlow"
id=
"BPMNEdge_bossNotPassFlow"
>
<omgdi:waypoint
x=
"555.0"
y=
"295.0"
></omgdi:waypoint>
<omgdi:waypoint
x=
"455.0"
y=
"295.0"
></omgdi:waypoint>
<omgdi:waypoint
x=
"455.0"
y=
"190.0"
></omgdi:waypoint>
</bpmndi:BPMNEdge>
</bpmndi:BPMNPlane>
</bpmndi:BPMNDiagram>
</definitions>
\ No newline at end of file
target/flowable-springboot-0.0.1-SNAPSHOT.jar.original
deleted
100644 → 0
浏览文件 @
5ca87f23
File deleted
target/maven-archiver/pom.properties
deleted
100644 → 0
浏览文件 @
5ca87f23
artifactId
=
flowable-springboot
groupId
=
com.haiyang
version
=
0.0.1-SNAPSHOT
target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst
deleted
100644 → 0
浏览文件 @
5ca87f23
com\haiyang\flowablespringboot\handler\BossTaskHandler.class
com\haiyang\flowablespringboot\handler\ManagerTaskHandler.class
com\haiyang\flowablespringboot\FlowableSpringbootApplication.class
com\haiyang\flowablespringboot\controller\ExpenseController.class
com\haiyang\flowablespringboot\config\FlowableConfig.class
com\haiyang\flowablespringboot\config\SwaggerConfigApi.class
target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst
deleted
100644 → 0
浏览文件 @
5ca87f23
D:\myspace\flowable-springboot-master\src\main\java\com\haiyang\flowablespringboot\config\SwaggerConfigApi.java
D:\myspace\flowable-springboot-master\src\main\java\com\haiyang\flowablespringboot\FlowableSpringbootApplication.java
D:\myspace\flowable-springboot-master\src\main\java\com\haiyang\flowablespringboot\config\FlowableConfig.java
D:\myspace\flowable-springboot-master\src\main\java\com\haiyang\flowablespringboot\handler\ManagerTaskHandler.java
D:\myspace\flowable-springboot-master\src\main\java\com\haiyang\flowablespringboot\controller\ExpenseController.java
D:\myspace\flowable-springboot-master\src\main\java\com\haiyang\flowablespringboot\handler\BossTaskHandler.java
target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst
deleted
100644 → 0
浏览文件 @
5ca87f23
com\haiyang\flowablespringboot\FlowableSpringbootApplicationTests.class
target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst
deleted
100644 → 0
浏览文件 @
5ca87f23
D:\myspace\flowable-springboot-master\src\test\java\com\haiyang\flowablespringboot\FlowableSpringbootApplicationTests.java
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论