springboot banner指定作者
时间: 2023-10-23 17:48:29 浏览: 155
springboot的banner
您可以在Spring Boot应用程序的src/main/resources目录中创建一个名为banner.txt的文件,并在文件中添加以下内容:
${AnsiColor.BRIGHT_YELLOW}
██████╗ ███████╗ ██████╗ ██████╗ ██████╗ ██╗ ██╗███████╗██████╗
██╔════╝ ██╔════╝██╔═══██╗██╔══██╗██╔══██╗╚██╗ ██╔╝██╔════╝██╔══██╗
██║ ███╗█████╗ ██║ ██║██████╔╝██████╔╝ ╚████╔╝ █████╗ ██████╔╝
██║ ██║██╔══╝ ██║ ██║██╔══██╗██╔══██╗ ╚██╔╝ ██╔══╝ ██╔══██╗
╚██████╔╝███████╗╚██████╔╝██║ ██║██║ ██║ ██║ ███████╗██║ ██║
╚═════╝ ╚══════╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝ ╚═╝ ╚══════╝╚═╝ ╚═╝
by Your Name
${AnsiColor.RESET}
将"Your Name"替换为您自己的名字。您还可以使用一些其他的变量,例如${spring-boot.version}来显示Spring Boot的版本号。
阅读全文