Spring项目logback配置多环境日志输出

Spring项目logback配置多环境日志输出

    • SpringBoot项目
      • 1.区分线上线下环境配置
      • 2.在logback中通过如下方式进行区分环境
    • SpringMVC项目
      • 1.区分线上线下环境配置
      • 2.在pom文件中引入`maven-war-plugin`插件,这样作是为了在编译时,web.xml文件能识别${profileActive}
      • 3.在web.xml文件中修改spring.profiles.default配置,没有则添加
      • 4.创建一个监听器,继承ContextLoaderListener
      • 5.引入logback使用if判断需要的依赖
      • 6.在logback中使用if判断区分环境
      • 配置后没有生效的原因
    • 如果SpringMVC按照上述配置无法成功解决办法
      • 1.引入logback与spring整合的依赖设置后可以自定义logback.xml的文件名/路径
      • 2.将logback.xml文件的名字修改,比如叫logback-aaa.xml
      • 3.在web.xml中配置logback配置文件初始化(注:要写在spring配置的上边)
      • 4.将之前配置的监听器改成继承LogbackConfigListener,配置logback文件初始化的监听器

SpringBoot项目

1.区分线上线下环境配置

maven项目:在pom.xml文件中的dependencies标签前添加如下代码

<profiles>
   
   <profile>
       <id>devid>
       
       <activation>
           <activeByDefault>trueactiveByDefault>
       activation>
       <properties>
           
           <profileActive>devprofileActive>
       properties>
   profile>
   <profile>
     <id>proid>
     <properties>
       <profileActive>prodprofileActive>
     properties>
   profile>
profiles>

pom文件配置后可以在application配置文件中通过@profileActive@方式拿到profileActive的值

#区分springboot是线上还是线下环境
spring.profiles.active=@profileActive@

2.在logback中通过如下方式进行区分环境

可以根据不同的环境设置不同的日志输出路径

<springProfile name="prod">
   <property name="LOG_HOME" value="/opt/myapp/logs/mengmeng-admin"/>
springProfile>
<springProfile name="dev">
   <property name="LOG_HOME" value="/opt/myapp/logs/mengmeng-admin-dev"/>
springProfile>

如果参照这个配置后启动报 Logback configuration error detected: 错误
请参考这篇博客解决 https://blog.csdn.net/qq_33430083/article/details/91360771

SpringMVC项目

1.区分线上线下环境配置

同springboot一样

<profiles>
   
   <profile>
       <id>devid>
       
       <activation>
           <activeByDefault>trueactiveByDefault>
       activation>
       <properties>
           
           <profileActive>devlopmentprofileActive>
       properties>
   profile>
   <profile>
     <id>proid>
     <properties>
       <profileActive>productionprofileActive>
     properties>
   profile>
profiles>

2.在pom文件中引入maven-war-plugin插件,这样作是为了在编译时,web.xml文件能识别${profileActive}

<plugin>
  <groupId>org.apache.maven.pluginsgroupId>
  <artifactId>maven-war-pluginartifactId>
  <version>2.1.1version>
  <configuration>
    <webResources>
      <resource>
        <directory>src/main/webappdirectory>
        <filtering>truefiltering>
      resource>
    webResources>
  configuration>
plugin>

3.在web.xml文件中修改spring.profiles.default配置,没有则添加

<context-param>
    <param-name>spring.profiles.defaultparam-name>
    
    <param-value>${profileActive}param-value>
  context-param>

4.创建一个监听器,继承ContextLoaderListener

通过监听器获取到web.xml中spring.profiles.default的值,存入系统属性中

/**
 * 获取项目开发环境监听器
 *
 * @author 段誉
 * @create 2018-09-19 16:56
 */
public class XyyContextLoaderListener extends ContextLoaderListener {
  @Override
  public void contextInitialized(ServletContextEvent event) {
    String attribute = event.getServletContext().getInitParameter("spring.profiles.default");
    System.setProperty("DEV_MODEL", attribute);
    super.contextInitialized(event);
  }
}

在web.xml中添加监听器配置,在配置spring.profiles.default标签的后边添加

<listener>
  <listener-class>com.weijian.xiaoyingying.listener.XyyContextLoaderListenerlistener-class>
listener>

5.引入logback使用if判断需要的依赖

<dependency>
  <groupId>org.codehaus.janinogroupId>
  <artifactId>janinoartifactId>
  <version>3.0.6version>
dependency>

<dependency>
  <groupId>org.codehaus.janinogroupId>
  <artifactId>commons-compilerartifactId>
  <version>3.0.8version>
dependency>

6.在logback中使用if判断区分环境

<if condition='property("DEV_MODEL").contains("production")'>
  <then>
    <property name="LOG_HOME" value="/opt/myapp/logs/mjsadmin-pro"/>
  then>
  <else>
    <property name="LOG_HOME" value="/opt/myapp/logs/mjsadmin-dev"/>
  else>
if>

配置后没有生效的原因

  • 有些项目可能因为配置的原因导致logback初始化执行在了ContextLoaderListener 监听器之前导致配置没有生效

如果SpringMVC按照上述配置无法成功解决办法

1.引入logback与spring整合的依赖设置后可以自定义logback.xml的文件名/路径

<dependency>
  <groupId>org.logback-extensionsgroupId>
  <artifactId>logback-ext-springartifactId>
  <version>0.1.1version>
dependency>

2.将logback.xml文件的名字修改,比如叫logback-aaa.xml

3.在web.xml中配置logback配置文件初始化(注:要写在spring配置的上边)

<context-param>
  <param-name>logbackConfigLocationparam-name>
  <param-value>classpath:logback-aaa.xmlparam-value>
context-param>

4.将之前配置的监听器改成继承LogbackConfigListener,配置logback文件初始化的监听器

/**
 * 项目开发/生产环境监听器
 *
 * @author 段誉
 * @create 2019-02-21 10:28
 */
public class ErpContextLoaderListener extends LogbackConfigListener {
  @Override
  public void contextInitialized(ServletContextEvent event) {
    String attribute = event.getServletContext().getInitParameter("spring.profiles.default");
    System.setProperty("DEV_MODEL", attribute);
    super.contextInitialized(event);
  }
}

你可能感兴趣的:(#,SpringMVC,#,SpringBoot,#,logback)