本文咱們就來看看Spring Boot 1.5.x中引入的一個新的控制端點:/loggers
,該端點將爲咱們提供動態修改Spring Boot應用日誌級別的強大功能。該功能的使用很是簡單,它依然延續了Spring Boot自動化配置的實現,因此只須要在引入了spring-boot-starter-actuator
依賴的條件下就會自動開啓該端點的功能(更多關於spring-boot-starter-actuator
模塊的詳細介紹可見:《Spring Boot Actuator監控端點小結》一文)。html
下面,咱們不妨經過一個實際示例來看看如何使用該功能:web
構建一個基礎的Spring Boot應用。若是您對於如何構建還不熟悉,能夠參考《使用Intellij中的Spring Initializr來快速構建Spring Boot/Cloud工程》一文。spring
在pom.xml
引入以下依賴(若是使用Intellij中的Spring Initializr的話直接在提示框中選下web和actuator模塊便可)。安全
<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>1.5.1.RELEASE</version> <relativePath/> <!-- lookup parent from repository --> </parent> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> </dependencies>
在應用主類中添加一個接口用來測試日誌級別的變化,好比下面的實現:app
@RestController @SpringBootApplication public class DemoApplication { private Logger logger = LoggerFactory.getLogger(getClass()); @RequestMapping(value = "/test", method = RequestMethod.GET) public String testLogLevel() { logger.debug("Logger Level :DEBUG"); logger.info("Logger Level :INFO"); logger.error("Logger Level :ERROR"); return ""; } public static void main(String[] args) { SpringApplication.run(DemoApplication.class, args); } }
爲了後續的試驗順利,在application.properties
中增長一個配置,來關閉安全認證校驗。spring-boot
management.security.enabled=false
否則在訪問/loggers
端點的時候,會報以下錯誤:測試
{ "timestamp": 1485873161065, "status": 401, "error": "Unauthorized", "message": "Full authentication is required to access this resource.", "path": "/loggers/com.didispace" }
源碼來源ui