18

我正在使用传统方式加载 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 文件,该环境由环境变量/jndi 条目定义.. 所以我希望使用新的 spring 3.1 属性管理我可以改变这个至

<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 中以编程方式加载它。

4

3 回答 3

19

帮助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 设置弹簧配置文件:

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

这样,您可以使用一个相同的环境设置 log4jConfigLocation 和 spring 配置文件。多变的。

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

于 2013-04-01T16:47:06.147 回答
0

这可能对最近的读者也有帮助:在 Log4j 2.7(但它可能更旧)中,参数名称已更改:请参阅接口Log4jWebSupport

/**
 * The {@link javax.servlet.ServletContext} parameter name for the location of the configuration.
 */
String LOG4J_CONFIG_LOCATION = "log4jConfiguration";
于 2016-12-27T13:20:23.543 回答
0

默认情况下,Spring Boot 从系统的默认位置(例如classpath:logback.xmlLogback)获取本机配置,但您可以使用logging.config属性设置配置文件的位置。

logging.config=classpath:log4j-<ENV-NAME>.xml

https://docs.spring.io/spring-boot/docs/2.0.0.RELEASE/reference/html/howto-logging.html

于 2021-12-20T07:00:54.067 回答