您好,登錄后才能下訂單哦!
springboot中怎么管理日志,很多新手對(duì)此不是很清楚,為了幫助大家解決這個(gè)難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。
一。
近期自己的項(xiàng)目想要一個(gè)記錄日志的功能,而springboot本身就內(nèi)置了日志功能,然而想要輸入想要的日志,并且輸出到磁盤,然后按天歸檔,或者日志的切分什么的,自帶的日志僅僅具有簡(jiǎn)單的功能,百度了一番,總結(jié)如下,適合大多數(shù)的應(yīng)用場(chǎng)景
二。
springboot的pom文件都會(huì)引一個(gè)parent
<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.0.0.RELEASE</version> </parent>
點(diǎn)進(jìn)去這個(gè)parent,會(huì)有一個(gè)這個(gè)dependency
<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>2.0.0.RELEASE</version> <relativePath>../../spring-boot-dependencies</relativePath> </parent>
再點(diǎn)進(jìn)去就是2.0版本,所謂的它給你集成的各種包依賴,而且規(guī)定了版本號(hào),其中有一個(gè)包如下
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> <version>2.0.0.RELEASE</version> </dependency>
再點(diǎn)進(jìn)去
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-logging</artifactId> <version>2.0.0.RELEASE</version> <scope>compile</scope> </dependency>
再點(diǎn),啊哈,出來了,這些都是原有的日志包,所以,不必再引依賴了,直接用就ok了,用法如下:
<dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>1.2.3</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-to-slf4j</artifactId> <version>2.10.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jul-to-slf4j</artifactId> <version>1.7.25</version> <scope>compile</scope> </dependency>
rsion="1.0">其中說一下,彩色日志這個(gè)東東,得下載插件才可以哦,怎么下?我不知道哈哈然后在yml或者properties中配置logging.config=classpath:log/logback-spring.xml logging.path=D:/nmyslog/nmys 日志的使用方式,就跟普通使用一樣,只不過,此配置配置的是不僅在控制臺(tái)輸出而且在磁盤上也會(huì)保留,并且info/debug/error/warn的日志都區(qū)分開了,并且按照每天做了歸檔
看完上述內(nèi)容是否對(duì)您有幫助呢?如果還想對(duì)相關(guān)知識(shí)有進(jìn)一步的了解或閱讀更多相關(guān)文章,請(qǐng)關(guān)注億速云行業(yè)資訊頻道,感謝您對(duì)億速云的支持。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。