【更新】solon 版本升为 2.5.3
This commit is contained in:
parent
ee16f29ed2
commit
8377bc1792
|
@ -10,7 +10,7 @@ import com.yomahub.liteflow.solon.config.LiteflowMainAutoConfiguration;
|
|||
import com.yomahub.liteflow.solon.config.LiteflowMonitorProperty;
|
||||
import com.yomahub.liteflow.solon.config.LiteflowProperty;
|
||||
import org.noear.solon.Utils;
|
||||
import org.noear.solon.core.AopContext;
|
||||
import org.noear.solon.core.AppContext;
|
||||
import org.noear.solon.core.Plugin;
|
||||
|
||||
import java.util.Properties;
|
||||
|
@ -22,7 +22,7 @@ import java.util.Properties;
|
|||
public class XPluginImpl implements Plugin {
|
||||
|
||||
@Override
|
||||
public void start(AopContext context) {
|
||||
public void start(AppContext context) {
|
||||
// 加载默认配置
|
||||
Properties defProps = Utils.loadProperties("META-INF/liteflow-default.properties");
|
||||
if (defProps != null && defProps.size() > 0) {
|
||||
|
@ -92,7 +92,7 @@ public class XPluginImpl implements Plugin {
|
|||
FlowBus.addManagedNode(nodeId, node1);
|
||||
}
|
||||
else {
|
||||
context.beanExtract(bw); // 尝试提取 LiteflowMethod 函数
|
||||
context.beanExtractOrProxy(bw); // 尝试提取 LiteflowMethod 函数,并支持自动代理
|
||||
}
|
||||
});
|
||||
}
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
# Spring 的实现
|
||||
# Solon 的实现
|
||||
com.yomahub.liteflow.spi.solon.SolonCmpAroundAspect
|
|
@ -1,2 +1,2 @@
|
|||
# Spring 的实现
|
||||
# Solon 的实现
|
||||
com.yomahub.liteflow.spi.solon.SolonContextAware
|
|
@ -1,2 +1,2 @@
|
|||
# Spring 的实现
|
||||
# Solon 的实现
|
||||
com.yomahub.liteflow.spi.solon.SolonContextCmpInit
|
|
@ -1,2 +1,2 @@
|
|||
# Spring 的实现
|
||||
# Solon 的实现
|
||||
com.yomahub.liteflow.spi.solon.SolonLiteflowComponentSupport
|
|
@ -1,2 +1,2 @@
|
|||
# Spring 的实现
|
||||
# Solon 的实现
|
||||
com.yomahub.liteflow.spi.solon.SolonPathContentParser
|
2
pom.xml
2
pom.xml
|
@ -64,7 +64,7 @@
|
|||
<bytebuddy.version>1.12.23</bytebuddy.version>
|
||||
<aspectjweaver.version>1.8.13</aspectjweaver.version>
|
||||
<logback-classic.version>1.2.3</logback-classic.version>
|
||||
<solon.version>2.3.8</solon.version>
|
||||
<solon.version>2.5.3</solon.version>
|
||||
<netty.version>4.1.84.Final</netty.version>
|
||||
<guava.version>31.1-jre</guava.version>
|
||||
<httpclient.version>4.5.13</httpclient.version>
|
||||
|
|
Loading…
Reference in New Issue