您好,登錄后才能下訂單哦!
本篇內(nèi)容介紹了“SpringBoot怎么集成slf4j和log4j2”的有關(guān)知識(shí),在實(shí)際案例的操作過程中,不少人都會(huì)遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!
Maven依賴
<!--增加log4j2依賴↓--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-log4j2</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> <exclusions> <!-- 去除舊log依賴 --> <exclusion> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-logging</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <exclusions> <!-- 去除舊log依賴 --> <exclusion> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-logging</artifactId> </exclusion> </exclusions> </dependency>
如果其它依賴有l(wèi)og日志沖突,可以加入下面配置:
<exclusions> <exclusion> <groupId>log4j</groupId> <artifactId>*</artifactId> </exclusion> <exclusion> <groupId>org.slf4j</groupId> <artifactId>*</artifactId> </exclusion> <exclusion> <groupId>org.apache.logging.log4j</groupId> <artifactId>*</artifactId> </exclusion> </exclusions>
log4j2.xml
放在resources目錄下
<?xml version="1.0" encoding="UTF-8"?> <!-- 6個(gè)優(yōu)先級(jí)從高到低依次為:OFF、FATAL、ERROR、WARN、INFO、DEBUG、TRACE、 ALL。 如果設(shè)置優(yōu)先級(jí)為WARN,那么OFF、FATAL、ERROR、WARN 4個(gè)級(jí)別的log能正常輸出 設(shè)置為OFF 表示不記錄log4j2本身的日志, --> <!-- status:用來指定log4j本身的打印日志級(jí)別,monitorInterval:指定log4j自動(dòng)重新配置的監(jiān)測間隔時(shí)間 --> <configuration status="INFO" monitorInterval="30"> <!-- 自己設(shè)置屬性,后面通過${}來訪問 --> <!-- <properties> <property name="LOG_HOME">${web:rootDir}/logs</property> </properties>--> <appenders> <!--Appender 1. 輸出到Console控制臺(tái),指定輸出格式和過濾器等級(jí)為INFO --> <Console name="Console" target="SYSTEM_OUT"> <!--ThresholdFilter指定日志消息的輸出最低層次--> <ThresholdFilter level="ALL" onMatch="ACCEPT" onMismatch="DENY"/> <PatternLayout pattern="%d{HH:mm:ss.SSS} %-5level %class{36} %L %M - %msg%xEx%n"/> </Console> <!--Appender 2. 輸出到滾動(dòng)保存的文件, 觸發(fā)保存日志文件的條件是日志文件大于3KB,只保存最新的10個(gè)日志--> <File name="allLog" fileName="${LOG_HOME}/all.log"> <ThresholdFilter level="ALL" onMatch="ACCEPT" onMismatch="DENY"/> <PatternLayout charset="UTF-8" pattern="%d{yyyy.MM.dd 'at' HH:mm:ss z} %-5level %class{36} %L %M - %msg%xEx%n"/> </File> <!--Appender 3. 輸出到滾動(dòng)保存的文件, 觸發(fā)保存日志文件的條件是日志文件大于3KB,只保存最新的10個(gè)日志--> <RollingFile name="debugLog" fileName="${LOG_HOME}/debug.log" filePattern="${log.path}/debug-%i.log"> <ThresholdFilter level="DEBUG" onMatch="ACCEPT" onMismatch="DENY"/> <PatternLayout charset="UTF-8" pattern="[%-5level][%d{yyyy-MM-dd HH:mm:ss}][%F:%L] - %m%n"/> <SizeBasedTriggeringPolicy size="3KB"/> <!-- DefaultRolloverStrategy 中的參數(shù)max,可以限制 SizeBasedTriggeringPolicy中size超出后,只保留max個(gè)存檔--> <DefaultRolloverStrategy max="10"/> </RollingFile> <!--Appender 4. 輸出到滾動(dòng)保存的文件, 觸發(fā)保存日志文件的條件是每分鐘第一次的日志事件。ERROR日志是按分鐘產(chǎn)生日志 --> <RollingFile name="errorLog" fileName="${LOG_HOME}/error.log" filePattern="${log.path}/error-%d{yyyy-MM-dd_HH-mm}.log"> <ThresholdFilter level="ERROR" onMatch="ACCEPT" onMismatch="DENY"/> <PatternLayout charset="UTF-8" pattern="[%-5level][%d{yyyy-MM-dd HH:mm:ss}][%C:%F:%L] - %m%n"/> <TimeBasedTriggeringPolicy/> </RollingFile> <RollingFile name="RollingFile" fileName="${LOG_HOME}/rar.log" filePattern="${LOG_HOME}/$${date:yyyy-MM}/${FILE_NAME}-%d{MM-dd-yyyy}-%i.log.gz"> <PatternLayout charset="UTF-8" pattern="%d{yyyy-MM-dd 'at' HH:mm:ss z} %-5level %class{36} %L %M - %msg%xEx%n"/> <!--日志文件最大值 第二天壓縮--> <Policies> <TimeBasedTriggeringPolicy/> <SizeBasedTriggeringPolicy size="10 MB"/> </Policies> </RollingFile> </appenders> <!--root 默認(rèn)加載--> <loggers> <root level="DEBUG"> <appender-ref ref="Console"/> <!--<appender-ref ref="allLog"/>--> <!--<appender-ref ref="debugLog"/>--> <!--<appender-ref ref="errorLog"/>--> <!--<appender-ref ref="RollingFile"/>--> </root> </loggers> </configuration>
LogTest.java
import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class LogTest { public final Logger logger=LoggerFactory.getLogger(getClass()); public static void main(String[] args) { log.trace("trace"); log.debug("debug"); log.warn("warn"); log.info("info"); log.error("error"); } }
“SpringBoot怎么集成slf4j和log4j2”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。