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