溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Spring替換掉默認(rèn)common-logging.jar的方法

發(fā)布時(shí)間:2020-07-28 15:21:41 來源:億速云 閱讀:242 作者:小豬 欄目:編程語言

這篇文章主要講解了Spring替換掉默認(rèn)common-logging.jar的方法,內(nèi)容清晰明了,對(duì)此有興趣的小伙伴可以學(xué)習(xí)一下,相信大家閱讀完之后會(huì)有幫助。

為什么使用日志打印而不是使用System.out.println()?

System.out是一個(gè)io流 如果使用它打印大批量數(shù)據(jù) 會(huì)占用大量的資源

spring默認(rèn)使用common-logging打印日志信息 如果我們想替換掉它 使用其他的日志工具 分為如下幾步

1.排除項(xiàng)目對(duì)common-logging的依賴

<dependency>
  <groupId>org.springframework</groupId>
  <artifactId>spring-orm</artifactId>
  <exclusions>
    <exclusion>
      <groupId>commons-logging</groupId>
      <artifactId>commons-logging</artifactId>
    </exclusion>
  </exclusions>
</dependency>

因?yàn)槲宜玫捻?xiàng)目中common-logging在此依賴之下 所以需要將其排除

2.引入取代common-logging的日志打印工具的依賴

<!--其他日志工具的中間轉(zhuǎn)換包-->
<dependency>
  <groupId>org.slf4j</groupId>
  <artifactId>jcl-over-slf4j</artifactId>
</dependency>
<dependency>
  <groupId>org.slf4j</groupId>
  <artifactId>slf4j-api</artifactId>
  <version>1.7.7</version>
</dependency>
<dependency>
  <groupId>ch.qos.logback</groupId>
  <artifactId>logback-classic</artifactId>
  <version>1.2.3</version>
</dependency>

SLF4J對(duì)應(yīng)不同框架如圖所示

Spring替換掉默認(rèn)common-logging.jar的方法

我這里引入的是轉(zhuǎn)logback的依賴

3.配置logback.xml 設(shè)置輸出的日志

先測試一下

Spring替換掉默認(rèn)common-logging.jar的方法

結(jié)果如圖 打印的日志太長了 設(shè)置打印的日志的格式和等級(jí)就需要logback.xml了

內(nèi)容如圖:(logback.xml在rescouce目錄下)

<&#63;xml version="1.0" encoding="UTF-8"&#63;>
<configuration debug="true"> <!-- 指定日志輸出的位置 -->
  <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
    <encoder> <!-- 日志輸出的格式 --> <!-- 按照順序分別是:時(shí)間、日志級(jí)別、線程名稱、打印日志的類、日志主體 內(nèi)容、換行 -->
      <pattern>[%d{HH:mm:ss.SSS}] [%-5level] [%thread] [%logger] [%msg]%n</pattern>
    </encoder>
  </appender>
  <!-- 設(shè)置全局日志級(jí)別。日志級(jí)別按順序分別是:DEBUG、INFO、WARN、ERROR --> <!-- 指定任何一個(gè)日志級(jí)別都只打印當(dāng)前級(jí)別和后面級(jí)別的日志。 -->
  <root level="INFO"> <!-- 指定打印日志的 appender,這里通過“STDOUT”引用了前面配置的 appender -->
    <appender-ref ref="STDOUT"/>
  </root> <!-- 根據(jù)特殊需求指定局部日志級(jí)別 -->
  <logger name="com.atguigu.crowd.mapper" level="DEBUG"/>
</configuration>

設(shè)置后結(jié)果如圖

Spring替換掉默認(rèn)common-logging.jar的方法

看完上述內(nèi)容,是不是對(duì)Spring替換掉默認(rèn)common-logging.jar的方法有進(jìn)一步的了解,如果還想學(xué)習(xí)更多內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI