mirror of
https://gitee.com/dromara/liteFlow.git
synced 2026-05-14 04:02:09 +08:00
bug #ICZ1M1 解决在2.15.0中,获取Annotation缺失了缓存导致的性能微小损失问题
This commit is contained in:
@@ -36,13 +36,13 @@ public class SolonDeclComponentParser implements DeclComponentParser {
|
||||
method -> AnnotationUtil.getAnnotation(method, LiteflowMethod.class) != null
|
||||
).map(method -> {
|
||||
LiteflowMethod liteflowMethod = AnnotationUtil.getAnnotation(method, LiteflowMethod.class);
|
||||
LiteflowRetry liteflowRetry = AnnotationUtil.getAnnotationAlias(method, LiteflowRetry.class);
|
||||
LiteflowRetry liteflowRetry = AnnoUtil.getAnnotation(method, LiteflowRetry.class);
|
||||
|
||||
String currNodeId = null;
|
||||
String currNodeName = null;
|
||||
if (nodeId == null){
|
||||
if (StrUtil.isBlank(liteflowMethod.nodeId())){
|
||||
LiteflowComponent liteflowComponent = AnnotationUtil.getAnnotationAlias(clazz, LiteflowComponent.class);
|
||||
LiteflowComponent liteflowComponent = AnnoUtil.getAnnotation(clazz, LiteflowComponent.class);
|
||||
Component component = AnnotationUtil.getAnnotation(clazz, Component.class);
|
||||
|
||||
if(liteflowComponent != null){
|
||||
|
||||
Reference in New Issue
Block a user