Configuration 在springframework下:WARN:WARN找不到记录器(org.springframework.web.context.ContextLoader)的追加器

Configuration 在springframework下:WARN:WARN找不到记录器(org.springframework.web.context.ContextLoader)的追加器,configuration,log4j,slf4j,appender,Configuration,Log4j,Slf4j,Appender,我花了一整天的时间试图解决我在一个webapp中使用log4j时遇到的日志记录问题。无论我做什么,我都无法摆脱以下几点: log4j:WARN No appenders could be found for logger (org.springframework.web.context.ContextLoader). log4j:WARN Please initialize the log4j system properly. log4j:WARN See http://logging.apac

我花了一整天的时间试图解决我在一个webapp中使用log4j时遇到的日志记录问题。无论我做什么,我都无法摆脱以下几点:

log4j:WARN No appenders could be found for logger (org.springframework.web.context.ContextLoader).
log4j:WARN Please initialize the log4j system properly.
log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info.
为了清楚起见,我已经阅读了这里所有关于堆栈溢出的文章来解决这个问题。我读过log4j手册。我已经学习了十几种不同的教程。我尝试了属性方法和XML方法(分别是log4j.properties和log4j.XML)。另外,我已经确认正在读取log4j.xml文件。除了服务器在启动时告诉我这一点之外,我还可以通过.xml文件影响反馈级别。因此,是的,log4j.xml文件位于类路径中

我知道我错过了一些简单和基本的东西。以下是相关文件:

LOG4J.XML(/WEB-INF):


和WEB.XML(/WEB-INF):


上下文配置位置
/WEB-INF/spring/root-context.xml
/WEB-INF/spring/app-context.xml
org.springframework.web.util.Log4jConfigListener
log4jConfigLocation
/WEB-INF/log4j.xml
org.springframework.web.context.ContextLoaderListener
appServlet
org.springframework.web.servlet.DispatcherServlet
上下文配置位置
/WEB-INF/spring/appServlet/servlet-context.xml
1.
appServlet
/
和APP-CONTEXT.XML(/WEB-INF/spring):


和APP-CONTEXT-MONGO.XML(/WEB-INF/spring):


/WEB-INF/spring/database.properties
最后是ROOT-CONTEXT.XML(/WEB-INF/spring):


我错过了什么

谢谢。

你试过这个吗

 <logger name="org.springframework.web">
     <level value="info" /> 
     <appender-ref ref="console" />     
 </logger>

将这些行放在
web.xml
的开头:


org.springframework.web.util.Log4jConfigListener
log4jConfigLocation
classpath:/main/resources/log4j.xml

这是否回答了您的问题?
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">

<!-- The definition of the Root Spring Container shared by all Servlets and Filters, and the applicationContext.xml file -->
<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>
        /WEB-INF/spring/root-context.xml
        /WEB-INF/spring/app-context.xml         
    </param-value>      
</context-param>    

<!-- Logging listener -->
<listener>
    <listener-class>org.springframework.web.util.Log4jConfigListener</listener-class>
</listener>
<context-param>
    <param-name>log4jConfigLocation</param-name>
    <param-value>/WEB-INF/log4j.xml</param-value>
</context-param>

<!-- Creates the Spring Container shared by all Servlets and Filters -->
<listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>      
</listener>

<!-- Processes application requests -->
<servlet>
    <servlet-name>appServlet</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <init-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/spring/appServlet/servlet-context.xml</param-value>           
    </init-param>       
    <load-on-startup>1</load-on-startup>
</servlet>

<servlet-mapping>
    <servlet-name>appServlet</servlet-name>
    <url-pattern>/</url-pattern>
</servlet-mapping>  

</web-app>
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:p="http://www.springframework.org/schema/p"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
    http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd
    http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd">

<!-- Activates various annotations to be detected in bean classes -->   
<context:annotation-config />   

<!-- Scans the classpath for annotated components that will be auto-registered as Spring beans. 
For example @Controller and @Service. Make sure to set the correct base-package --> 
<context:component-scan base-package="com.tiersoftinc.gridlab3" />   

<!-- Configures the annotation-driven Spring MVC Controller programming model.  
Note that, with Spring 3.0, this tag works in Servlet MVC only! --> 
<mvc:annotation-driven />

<mvc:resources mapping="/resources/**" location="/resources/" />        

<!-- Imports datasource configuration -->   
<import resource="app-context-mongo.xml"/>

</beans>
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:c="http://www.springframework.org/schema/c"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mongo="http://www.springframework.org/schema/data/mongo"
xmlns:util="http://www.springframework.org/schema/util"
xsi:schemaLocation="http://www.springframework.org/schema/beans
                    http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
                    http://www.springframework.org/schema/tx
                    http://www.springframework.org/schema/tx/spring-tx-3.1.xsd                      
                    http://www.springframework.org/schema/context                       
                    http://www.springframework.org/schema/context/spring-context-3.1.xsd                        
                    http://www.springframework.org/schema/data/mongo                        
                    http://www.springframework.org/schema/data/mongo/spring-mongo-1.0.xsd                       
                    http://www.springframework.org/schema/util                      
                    http://www.springframework.org/schema/util/spring-util-3.1.xsd">    

<!-- Activate Spring Data MongoDB repository support -->
<mongo:repositories base-package="com.tiersoftinc.gridlab3.repository" />

<bean id="propertyPlaceholderConfigurer"   
    class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">  
    <property name="locations">  
        <list>  
            <value>/WEB-INF/spring/database.properties</value>  
        </list>  
    </property> 
</bean>  

<!-- MongoDB host -->
<mongo:mongo host="${mongo.host.name}" port="${mongo.host.port}"/> 

<!-- Template for performing MongoDB operations -->
<bean id="mongoTemplate" class="org.springframework.data.mongodb.core.MongoTemplate"

c:mongo-ref="mongo" c:databaseName="${mongo.db.name}"/>

<!-- Service for initializing MongoDB with sample data using MongoTemplate -->
<bean id="initGridLab3Service" class="com.tiersoftinc.gridlab3.services.InitGridLab3Service" init-method="init"/>   

</beans>
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
    http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd
    http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd">    

<!-- Root Context: defines shared resources visible to all other web components -->     
<context:annotation-config />

</beans>
 <logger name="org.springframework.web">
     <level value="info" /> 
     <appender-ref ref="console" />     
 </logger>