mirror of
https://gitee.com/dromara/liteFlow.git
synced 2026-05-24 10:48:09 +08:00
Merge branch 'v2.5.0-SNAPSHOT' of https://gitee.com/dromara/liteFlow into v2.5.0-SNAPSHOT
Conflicts: liteflow-core/src/main/java/com/yomahub/liteflow/core/FlowExecutor.java
This commit is contained in:
@@ -18,7 +18,7 @@
|
||||
<!-- Import dependency management from Spring Boot -->
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-dependencies</artifactId>
|
||||
<version>2.0.5.RELEASE</version>
|
||||
<version>${springboot.version}</version>
|
||||
<type>pom</type>
|
||||
<scope>import</scope>
|
||||
</dependency>
|
||||
|
||||
@@ -7,12 +7,12 @@ import org.springframework.stereotype.Component;
|
||||
@Component
|
||||
public class ComponentAspect implements ICmpAroundAspect {
|
||||
@Override
|
||||
public void beforeProcess(Slot slot) {
|
||||
public void beforeProcess(String nodeId, Slot slot) {
|
||||
System.out.println("before process");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void afterProcess(Slot slot) {
|
||||
public void afterProcess(String nodeId, Slot slot) {
|
||||
System.out.println("after process");
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user