1. 程式人生 > >SpringBoot你需要知道的簡單基本配置

SpringBoot你需要知道的簡單基本配置

(1). 在Spring Boot啟動的時候會有一個預設啟動方案,如下圖所示:
xxx
(2). 在src/main/resources下新建一個banner.txt。
(3). 通過http://patorjk.com/software/taag網站生成字元,如敲入的為”LONGJIAZUO”,將網站生成的字元複製到banner.txt中。
(4). 這時再啟動程式,圖案將變為如下圖所示:
xxx

四. 關閉banner

1. main裡的內容修改為:

SpringApplication app=newSpringApplication(Demo01Application.class);
app.setShowBanner
(false); app.run(args);

2. 或者使用fluent API修改為:

newSpringApplicationBuilder(Demo01Application.class).showBanner(true).run(args);

Spring Boot提倡零配置,即無xml配置,但是在實際專案中,可能有一些特殊要求你必須使用xml配置,這時候可以通過在配置類上面使用Spring提供的@ImportResource來在載入xml配置,例如:

@ImportResource(value ={"classpath:some-context.xml","classpath:another-context.xml"
})


日誌配置


SpringBoot支援Java Util LoggingLog4J,Log4J2Logback作為日誌框架,無論使用哪種日誌框架,Spring Boot已經為當前使用的日誌框架的控制檯輸出以及檔案輸出做好了配置,可以對比前面文章SpringMvc4.x基礎(一):Spring MVC專案快速搭建中沒有Spring Boot的日誌配置的方式。
預設情況下,Spring Boot使用Logback作為日誌框架。
配置日誌檔案:

logging.file=F:/mylog/log.log

配置日誌級別:

logging.level.org.springframework
.web = DEBUG