08.MyBatis整合Log4j
生活随笔
收集整理的這篇文章主要介紹了
08.MyBatis整合Log4j
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
MyBatis整合Log4j:
1.導入log4j.jar
2.在conf.xml中開啟日志文件:
1 <!-- 配置日志文件 --> 2 <settings> 3 <setting name="logImpl" value="LOG4J"/> 4 </settings>如果不指定,MyBatis就會根據一下順序尋找日志:
SLF4J -> Apache Commons Logging -> Log4j 2 -> Log4j -> jdk Logging
3.編寫配置日志輸出文件:log4j.properties
1 # Global logging configuration\uff0c\u5efa\u8bae\u5f00\u53d1\u73af\u5883\u4e2d\u8981\u7528debug 2 log4j.rootLogger=DEBUG, stdout 3 # Console output... 4 log4j.appender.stdout=org.apache.log4j.ConsoleAppender 5 log4j.appender.stdout.layout=org.apache.log4j.PatternLayout 6 log4j.appender.stdout.layout.ConversionPattern=%5p [%t] - %m%n日志級別:
DEBUG<INFO<WARN<ERROR
如果設置為info,則只顯示info及以上級別的信息
建議:在開發時設置debug,在運行時設置為info或以上
?
轉載于:https://www.cnblogs.com/man-tou/p/11346953.html
總結
以上是生活随笔為你收集整理的08.MyBatis整合Log4j的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 基于图嵌入的兵棋联合作战态势实体知识表示
- 下一篇: LSTM(序列标注,自实现)