startpom文件增加流程模块启动

This commit is contained in:
wsm
2026-05-06 08:39:42 +08:00
parent edc15cafa7
commit 09b6c7da12
2 changed files with 7 additions and 0 deletions
@@ -27,6 +27,10 @@
<groupId>org.jeecgframework.boot</groupId> <groupId>org.jeecgframework.boot</groupId>
<artifactId>jeecg-module-supervision</artifactId> <artifactId>jeecg-module-supervision</artifactId>
</dependency> </dependency>
<dependency>
<groupId>org.jeecgframework.boot</groupId>
<artifactId>jeecg-module-flow</artifactId>
</dependency>
<!-- flyway 数据库自动升级 --> <!-- flyway 数据库自动升级 -->
<dependency> <dependency>
@@ -40,6 +40,9 @@ public class JeecgSystemApplication extends SpringBootServletInitializer {
"Swagger文档: \thttp://" + ip + ":" + port + path + "/doc.html\n" + "Swagger文档: \thttp://" + ip + ":" + port + path + "/doc.html\n" +
"----------------------------------------------------------"); "----------------------------------------------------------");
// 检查是否有 xiSpeakFlow 这个 Bean
boolean exists = application.containsBean("xiSpeakFlow");
System.out.println("★★★ xiSpeakFlow 是否加载成功: " + exists);
} }
} }