我有一个在 WAS 6.1 上运行的 Java 应用程序,Log4j 用于日志记录。不创建日志文件。使用了其他一些日志配置,但不是与应用程序一起打包的配置。
我应该在哪里检查 WAS6.1 全局 log4j 配置?如何为特定应用程序覆盖它?
该应用程序是从战争档案中部署的。
log4j-1.2.14.jar 与应用程序一起打包在 WEB-INF/lib 目录下。我在 WEB-INF 目录中放置了一个 commons-logging.properties 文件。
这是我的 web.xml:
<?xml version="1.0" encoding="UTF-8"?><web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:web="http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
id="WebApp_ID" version="2.4">
<display-name>LineCheckOptimizerWeb</display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<context-param>
<param-name>log4jConfigLocation</param-name>
<param-value>/WEB-INF/log4j.xml</param-value>
</context-param>
<listener>
<description>Initializes a Guice Injector and installs it into the ServletContext</description>
<display-name>GuiceInitializer</display-name>
<listener-class>com.aa.otrs.lco.guice.GuiceInitializer</listener-class>
</listener>
<servlet>
<servlet-name>MessageBrokerServlet</servlet-name>
<servlet-class>flex.messaging.MessageBrokerServlet</servlet-class>
<init-param>
<param-name>services.configuration.file</param-name>
<param-value>/WEB-INF/flex/services-config.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>MessageBrokerServlet</servlet-name>
<url-pattern>/messagebroker/*</url-pattern>
</servlet-mapping>
<resource-ref>
<description>LCO JDBC Datasource</description>
<res-ref-name>jdbc/lco</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>