mirror of
https://gitee.com/dromara/liteFlow.git
synced 2026-05-14 20:22:07 +08:00
增加单元测试模块
This commit is contained in:
@@ -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