Heim >Java >javaLernprogramm >Java Spring Boot 1.5.4 Protokollverwaltung
Spring-Boot-Protokolle verwenden standardmäßig Logback für die Ausgabe:
Erstellen Sie eine logback.xml-Konfigurationsdatei im Ressourcenordner
<?xml version="1.0" encoding="UTF-8"?><configuration><!-- base.xml in the spring-boot jar, --><include resource="org/springframework/boot/logging/logback/base.xml"/><!--<logger name="org.springframework.web" level="DEBUG"/>--><!-- 输出hibernate的sql,会同时记录在文件日志中去,所以使用:spring.jpa.show-sql 配置比较好 --><!--<logger name="org.hibernate.SQL" level="DEBUG" />--><logger name="org.springframework.jdbc.core.JdbcTemplate" level="DEBUG"/><logger name="org.apache.tomcat.jdbc.pool" level="DEBUG"/></configuration>
Für eine spezifische Konfiguration können Sie sie in spring-boot.jar suchen und einen Blick darauf werfen
Die Konfiguration des Protokolldateipfads kann in application.properties konfiguriert werden
logging.file=/tmp/logs/springboottest.log
Das obige ist der detaillierte Inhalt vonJava Spring Boot 1.5.4 Protokollverwaltung. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!