2020
09-27
09-27
Springboot自定义banner及验证过程
一什么是banner我们在启动项目的时候控制台会打印出spring的图案就是banner。二自定义banner1创建一个springboot项目。2在resource目录下创建一个名为banner.txt的文件。3往banner.txt中写入我们的图案。4引入web启动依赖。<dependencies><!--web启动器--><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-web</artifactId></dependency></dependencies>5编...
继续阅读 >