gpt4 book ai didi

spring - spring 的环境特定 log4j 配置

转载 作者:IT老高 更新时间:2023-10-28 13:51:34 26 4
gpt4 key购买 nike

我正在使用传统方式加载 log4j.xml

<context-param>
<param-name>log4jConfigLocation</param-name>
<param-value>classpath:conf/log4j.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.util.Log4jConfigListener</listener-class>
</listener>

这很好用,但现在我需要根据我所处的环境加载不同的 log4j.xml 文件只需将其更改为

<context-param>
<param-name>log4jConfigLocation</param-name>
<param-value>classpath:conf/log4j-${ENV-NAME}.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.util.Log4jConfigListener</listener-class>
</listener>

并且 spring 将在每个环境中加载正确的 log4j 文件,但这可能不起作用,因为 web.xml 在 spring 之前加载。我遇到了这种方法

<bean id="log4jInitialization" class="org.springframework.beans.factory.config.MethodInvokingFactoryBean">
<property name="targetClass" value="org.springframework.util.Log4jConfigurer" />
<property name="targetMethod" value="initLogging" />
<property name="arguments">
<list>
<value>log4j-${ENV-NAME}.xml</value>
</list>
</property>
</bean>

所以本质上是将 log4j 的配置移动到 spring 上下文文件而不是 web.xml 中。但这也不起作用,因为某种原因,日志记录是以记录所有内容的方式启用的。那么如何根据环境变量使用不同的 log4j.xml 文件或在 servletcontextlistener 中以编程方式加载它。

最佳答案

现在帮助 adeelmahmood 为时已晚,但希望其他人能从我的回答中受益。事情是adeelmahmood是对的,这个配置:

<context-param>
<param-name>log4jConfigLocation</param-name>
<param-value>classpath:conf/log4j-${ENV-NAME}.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.util.Log4jConfigListener</listener-class>
</listener>

正在工作,但是:

  • Log4jConfigListener 应该在 web.xml 中的 ContextLoaderListener 之前注册!!!
  • 您还必须记住,Log4jConfigListener 假定一个扩展的 WAR 文件。

然后,如果设置了 ENV-NAME 环境变量,它将按预期工作。

顺便说一句,${ENV-NAME} 也可以在 spring 配置文件中使用!这还不是全部……您还可以使用我们的 env.property 来设置 spring 配置文件:

<context-param>
<param-name>spring.profiles.active</param-name>
<param-value>${ENV-NAME}</param-value>
</context-param>

通过这种方式,您可以设置 log4jConfigLocation 和 spring 配置文件,它们都具有一个相同的 env。变量。

顺便说一句,以防万一:使用 Maven 配置文件为开发、测试和生产分别构建并不是一个好的做法。阅读例如。 http://java.dzone.com/articles/maven-profile-best-practices并记住:“使用配置文件来管理构建时变量,而不是运行时变量,而不是(极少数异常(exception))工件的替代版本”。

关于spring - spring 的环境特定 log4j 配置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15348550/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com