Spring,Mybatis和Logback集成的时候,考虑到不同环境下,打印的日志级别不一样,采用spring profile active的方式来做,但是在网上搜了很多都是spring boot提供这种springProfile,就是spring profile active的方式来做,而spring没有,继续搜集资料发现一篇文章:
Spring Configuration
If you want to configure Logback components (Appenders, Layouts, etc) in applicationContext.xml instead of logback.xml to take advantage of the many Spring configuration features (PropertyPlaceholderConfigurer, Spring environment profiles, etc), you can follow the following steps.
来源:https://github.com/qos-ch/logback-extensions/wiki/Spring
于是项目中加入logback.xml,applicationContext.xml,在applicationContext.xml中:
<bean id="DEBUG" class="ch.qos.logback.core.rolling.RollingFileAppender" init-method="start" destroy-method="stop">
<property name="rollingPolicy">
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/164149.html