-
Notifications
You must be signed in to change notification settings - Fork 4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master-jdk21' of https://gitee.com/zhijiantianya/yudao-…
…cloud # Conflicts: # yudao-framework/yudao-spring-boot-starter-web/pom.xml
- Loading branch information
Showing
60 changed files
with
102 additions
and
190 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
...esources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports
This file was deleted.
Oops, something went wrong.
56 changes: 0 additions & 56 deletions
56
yudao-framework/yudao-spring-boot-starter-biz-error-code/pom.xml
This file was deleted.
Oops, something went wrong.
2 changes: 0 additions & 2 deletions
2
...esources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports
This file was deleted.
Oops, something went wrong.
38 changes: 0 additions & 38 deletions
38
yudao-framework/yudao-spring-boot-starter-desensitize/pom.xml
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...mework/desensitize/core/package-info.java → ...o/framework/desensitize/package-info.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
/** | ||
* 脱敏组件:支持 JSON 返回数据时,将邮箱、手机等字段进行脱敏 | ||
*/ | ||
package cn.iocoder.yudao.framework.desensitize.core; | ||
package cn.iocoder.yudao.framework.desensitize; |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
47 changes: 47 additions & 0 deletions
47
yudao-gateway/src/main/java/cn/iocoder/yudao/gateway/util/BannerApplicationRunner.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
package cn.iocoder.yudao.gateway.util; | ||
|
||
import cn.hutool.core.thread.ThreadUtil; | ||
import lombok.extern.slf4j.Slf4j; | ||
import org.springframework.boot.ApplicationArguments; | ||
import org.springframework.boot.ApplicationRunner; | ||
import org.springframework.stereotype.Component; | ||
|
||
import java.util.concurrent.TimeUnit; | ||
|
||
/** | ||
* 项目启动成功后,提供文档相关的地址 | ||
* | ||
* @author 芋道源码 | ||
*/ | ||
@Component | ||
@Slf4j | ||
public class BannerApplicationRunner implements ApplicationRunner { | ||
|
||
@Override | ||
public void run(ApplicationArguments args) { | ||
ThreadUtil.execute(() -> { | ||
ThreadUtil.sleep(1, TimeUnit.SECONDS); // 延迟 1 秒,保证输出到结尾 | ||
log.info("\n----------------------------------------------------------\n\t" + | ||
"项目启动成功!\n\t" + | ||
"接口文档: \t{} \n\t" + | ||
"开发文档: \t{} \n\t" + | ||
"视频教程: \t{} \n" + | ||
"----------------------------------------------------------", | ||
"https://cloud.iocoder.cn/api-doc/", | ||
"https://cloud.iocoder.cn", | ||
"https://t.zsxq.com/02Yf6M7Qn"); | ||
|
||
// 数据报表 | ||
System.out.println("[报表模块 yudao-module-report 教程][参考 https://cloud.iocoder.cn/report/ 开启]"); | ||
// 工作流 | ||
System.out.println("[工作流模块 yudao-module-bpm 教程][参考 https://cloud.iocoder.cn/bpm/ 开启]"); | ||
// 微信公众号 | ||
System.out.println("[微信公众号 yudao-module-mp 教程][参考 https://cloud.iocoder.cn/mp/build/ 开启]"); | ||
// 商城系统 | ||
System.out.println("[商城系统 yudao-module-mall 教程][参考 https://cloud.iocoder.cn/mall/build/ 开启]"); | ||
// 支付平台 | ||
System.out.println("[支付系统 yudao-module-pay - 已禁用][参考 https://doc.iocoder.cn/pay/build/ 开启]"); | ||
}); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
芋道源码 http://www.iocoder.cn | ||
Application Version: ${yudao.info.version} | ||
Spring Boot Version: ${spring-boot.version} | ||
|
||
.__ __. ______ .______ __ __ _______ | ||
| \ | | / __ \ | _ \ | | | | / _____| | ||
| \| | | | | | | |_) | | | | | | | __ | ||
| . ` | | | | | | _ < | | | | | | |_ | | ||
| |\ | | `--' | | |_) | | `--' | | |__| | | ||
|__| \__| \______/ |______/ \______/ \______| | ||
|
||
███╗ ██╗ ██████╗ ██████╗ ██╗ ██╗ ██████╗ | ||
████╗ ██║██╔═══██╗ ██╔══██╗██║ ██║██╔════╝ | ||
██╔██╗ ██║██║ ██║ ██████╔╝██║ ██║██║ ███╗ | ||
██║╚██╗██║██║ ██║ ██╔══██╗██║ ██║██║ ██║ | ||
██║ ╚████║╚██████╔╝ ██████╔╝╚██████╔╝╚██████╔╝ | ||
╚═╝ ╚═══╝ ╚═════╝ ╚═════╝ ╚═════╝ ╚═════╝ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.