【更新】solon 版本升为 2.5.3

This commit is contained in:
noear 2023-09-04 11:26:56 +08:00
parent ee16f29ed2
commit 8377bc1792
7 changed files with 9 additions and 9 deletions

View File

@ -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 函数并支持自动代理
}
});
}

View File

@ -1,2 +1,2 @@
# Spring 的实现
# Solon 的实现
com.yomahub.liteflow.spi.solon.SolonCmpAroundAspect

View File

@ -1,2 +1,2 @@
# Spring 的实现
# Solon 的实现
com.yomahub.liteflow.spi.solon.SolonContextAware

View File

@ -1,2 +1,2 @@
# Spring 的实现
# Solon 的实现
com.yomahub.liteflow.spi.solon.SolonContextCmpInit

View File

@ -1,2 +1,2 @@
# Spring 的实现
# Solon 的实现
com.yomahub.liteflow.spi.solon.SolonLiteflowComponentSupport

View File

@ -1,2 +1,2 @@
# Spring 的实现
# Solon 的实现
com.yomahub.liteflow.spi.solon.SolonPathContentParser

View File

@ -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>