springboot 启动文字 如何配置
时间: 2023-11-15 20:06:24 浏览: 97
springboot配置
在 Spring Boot 中,可以通过修改 `application.properties` 或 `application.yml` 文件来配置启动时的文字。
如果使用 `application.properties` 文件,则需要在文件中添加以下行:
```
spring.banner.location=classpath:banner.txt
```
这会告诉 Spring Boot 在 classpath 下查找名为 `banner.txt` 的文件,并将其用作启动时的文字。
如果使用 `application.yml` 文件,则需要添加以下行:
```
spring:
banner:
location: classpath:banner.txt
```
同样,这会告诉 Spring Boot 在 classpath 下查找名为 `banner.txt` 的文件,并将其用作启动时的文字。
在 `banner.txt` 文件中,可以编写任何自定义的 ASCII 艺术字或图像。例如:
```
____ _ _
/ ___| ___ ___| | _____ _| |_ ___
\___ \ / _ \ / __| |/ / _ \/ __| __/ __|
___) | (_) | (__| < __/ |_| |_\__ \
|____/ \___/ \___|_|\_\___|\__|\__|___/
```
这样启动应用程序时,就会在控制台上显示这个自定义的 ASCII 艺术字。
阅读全文