|
|
@ -21,22 +21,15 @@ public class BannerApplicationRunner implements ApplicationRunner { |
|
|
|
ThreadUtil.execute(() -> { |
|
|
|
ThreadUtil.sleep(1, TimeUnit.SECONDS); // 延迟 1 秒,保证输出到结尾
|
|
|
|
log.info("\n----------------------------------------------------------\n\t" + |
|
|
|
"项目启动成功!\n\t" + |
|
|
|
"接口文档: \t{} \n\t" + |
|
|
|
"开发文档: \t{} \n\t" + |
|
|
|
"视频教程: \t{} \n" + |
|
|
|
"----------------------------------------------------------", |
|
|
|
"https://doc.iocoder.cn/api-doc/", |
|
|
|
"https://doc.iocoder.cn", |
|
|
|
"https://t.zsxq.com/02Yf6M7Qn"); |
|
|
|
|
|
|
|
"闻荫项目启动成功!" + |
|
|
|
"\n----------------------------------------------------------"); |
|
|
|
// 数据报表
|
|
|
|
if (isNotPresent("com.win.module.report.framework.security.config.SecurityConfiguration")) { |
|
|
|
System.out.println("[报表模块 win-module-report - 已禁用][参考 https://doc.iocoder.cn/report/ 开启]"); |
|
|
|
System.out.println("[报表模块 win-module-report - 已禁用]"); |
|
|
|
} |
|
|
|
// 工作流
|
|
|
|
if (isNotPresent("com.win.framework.flowable.config.WinFlowableConfiguration")) { |
|
|
|
System.out.println("[工作流模块 win-module-bpm - 已禁用][参考 https://doc.iocoder.cn/bpm/ 开启]"); |
|
|
|
System.out.println("[工作流模块 win-module-bpm - 已禁用]"); |
|
|
|
} |
|
|
|
}); |
|
|
|
} |
|
|
|