spring.banner.location
时间: 2023-11-13 16:03:53 浏览: 109
Spring Boot自定义Banner实现代码
spring.banner.location属性用于指定Spring Boot应用程序中横幅文本的位置。横幅文本是在应用程序启动时显示在控制台上的消息。默认情况下,横幅文本存储在classpath下的banner.txt文件中。
可以使用以下值来配置spring.banner.location属性:
- classpath:banner.txt:横幅文本存储在classpath下的banner.txt文件中。
- file:/path/to/banner.txt:横幅文本存储在指定路径下的banner.txt文件中。
- http://example.com/banner.txt:横幅文本从指定的URL中获取。
如果不想显示横幅文本,可以将spring.banner.location属性设置为off。
请注意,横幅文本文件必须使用ASCII编码,并且可以使用特殊的ASCII艺术字符来创建自定义横幅效果。
阅读全文