停用banner的三种方法 1).main方法中的内容修改为: 2).使用fluent API 修改为 3).在 application.yml 或 application.properties文件中配置 在.yml 文件中配置如下 spring: main: banner-mode: "off" 在.properties 文件中配置如下 spring.main.banner-mode = off