File tree Expand file tree Collapse file tree 7 files changed +10
-6
lines changed
springboot-starter-data-authorization
springboot-starter-data-fast
src/main/java/com/codingapi/springboot/flow/matcher
springboot-starter-security Expand file tree Collapse file tree 7 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 1515
1616 <groupId >com.codingapi.springboot</groupId >
1717 <artifactId >springboot-parent</artifactId >
18- <version >2.9.17 </version >
18+ <version >2.9.18 </version >
1919
2020 <url >https://github.com/codingapi/springboot-framewrok</url >
2121 <name >springboot-parent</name >
Original file line number Diff line number Diff line change 66 <parent >
77 <artifactId >springboot-parent</artifactId >
88 <groupId >com.codingapi.springboot</groupId >
9- <version >2.9.17 </version >
9+ <version >2.9.18 </version >
1010 </parent >
1111
1212 <artifactId >springboot-starter-data-authorization</artifactId >
Original file line number Diff line number Diff line change 55 <parent >
66 <artifactId >springboot-parent</artifactId >
77 <groupId >com.codingapi.springboot</groupId >
8- <version >2.9.17 </version >
8+ <version >2.9.18 </version >
99 </parent >
1010 <modelVersion >4.0.0</modelVersion >
1111
Original file line number Diff line number Diff line change 66 <parent >
77 <artifactId >springboot-parent</artifactId >
88 <groupId >com.codingapi.springboot</groupId >
9- <version >2.9.17 </version >
9+ <version >2.9.18 </version >
1010 </parent >
1111
1212 <name >springboot-starter-flow</name >
Original file line number Diff line number Diff line change 55import lombok .Getter ;
66import org .springframework .util .StringUtils ;
77
8+ import java .util .ArrayList ;
89import java .util .Arrays ;
910import java .util .List ;
1011import java .util .stream .Collectors ;
@@ -113,6 +114,9 @@ public static OperatorMatcher creatorOperatorMatcher() {
113114 */
114115 public List <Long > matcher (FlowSession flowSession ) {
115116 List <Object > values = (List <Object >) runtime .invokeMethod ("run" , flowSession );
117+ if (values == null ) {
118+ return new ArrayList <>();
119+ }
116120 return values .stream ().map (item -> {
117121 if (item instanceof Number ) {
118122 return ((Number ) item ).longValue ();
Original file line number Diff line number Diff line change 66 <parent >
77 <artifactId >springboot-parent</artifactId >
88 <groupId >com.codingapi.springboot</groupId >
9- <version >2.9.17 </version >
9+ <version >2.9.18 </version >
1010 </parent >
1111
1212 <artifactId >springboot-starter-security</artifactId >
Original file line number Diff line number Diff line change 55 <parent >
66 <groupId >com.codingapi.springboot</groupId >
77 <artifactId >springboot-parent</artifactId >
8- <version >2.9.17 </version >
8+ <version >2.9.18 </version >
99 </parent >
1010 <artifactId >springboot-starter</artifactId >
1111
You can’t perform that action at this time.
0 commit comments