Skip to content

Commit 31a88d3

Browse files
committed
update 2.9.20
1 parent 2297e2e commit 31a88d3

File tree

9 files changed

+13
-8
lines changed

9 files changed

+13
-8
lines changed

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
<groupId>com.codingapi.springboot</groupId>
1717
<artifactId>springboot-parent</artifactId>
18-
<version>2.9.19</version>
18+
<version>2.9.20</version>
1919

2020
<url>https://github.com/codingapi/springboot-framewrok</url>
2121
<name>springboot-parent</name>

springboot-starter-data-authorization/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<artifactId>springboot-parent</artifactId>
88
<groupId>com.codingapi.springboot</groupId>
9-
<version>2.9.19</version>
9+
<version>2.9.20</version>
1010
</parent>
1111

1212
<artifactId>springboot-starter-data-authorization</artifactId>

springboot-starter-data-authorization/src/main/java/com/codingapi/springboot/authorization/interceptor/DefaultSQLInterceptor.java

+5
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@ public boolean beforeHandler(String sql) {
2121

2222
@Override
2323
public void afterHandler(String sql, String newSql, SQLException exception) {
24+
if(exception!=null){
25+
log.error("sql:{}",sql);
26+
log.error("newSql:{}",newSql);
27+
log.error(exception.getMessage(),exception);
28+
}
2429
if (DataAuthorizationPropertyContext.getInstance().showSql()) {
2530
log.info("newSql:{}", newSql);
2631
}

springboot-starter-data-fast/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>springboot-parent</artifactId>
77
<groupId>com.codingapi.springboot</groupId>
8-
<version>2.9.19</version>
8+
<version>2.9.20</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

springboot-starter-flow/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<artifactId>springboot-parent</artifactId>
88
<groupId>com.codingapi.springboot</groupId>
9-
<version>2.9.19</version>
9+
<version>2.9.20</version>
1010
</parent>
1111

1212
<name>springboot-starter-flow</name>

springboot-starter-flow/src/main/java/com/codingapi/springboot/flow/service/impl/FlowSubmitService.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ private FlowResult submitCurrentFlow() {
304304
this.saveFlowRecord(flowRecord);
305305
this.updateFinishFlowRecord();
306306

307-
this.pushEvent(flowRecord, FlowApprovalEvent.STATE_CREATE);
307+
this.pushEvent(flowRecord, FlowApprovalEvent.STATE_FINISH);
308308

309309
if (!nextRecords.isEmpty()) {
310310
return new FlowResult(flowWork, nextRecords.get(0));

springboot-starter-security/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<artifactId>springboot-parent</artifactId>
88
<groupId>com.codingapi.springboot</groupId>
9-
<version>2.9.19</version>
9+
<version>2.9.20</version>
1010
</parent>
1111

1212
<artifactId>springboot-starter-security</artifactId>

springboot-starter/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.codingapi.springboot</groupId>
77
<artifactId>springboot-parent</artifactId>
8-
<version>2.9.19</version>
8+
<version>2.9.20</version>
99
</parent>
1010
<artifactId>springboot-starter</artifactId>
1111

Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
------------------------------------------------------
2-
CodingApi SpringBoot-Starter 2.9.19
2+
CodingApi SpringBoot-Starter 2.9.20
33
springboot version (${spring-boot.version})
44
------------------------------------------------------

0 commit comments

Comments
 (0)