log4j:WARN
加了log4j.propertise文件还是发生log4j:WARN No appenders could be found for logger (org.springframework.web.context.ContextLoader).
log4j:WARN Please initialize the log4j system properly.这样的警告,
加了<context-param>
<param-name>log4jConfigLocation</param-name>
<param-value>/src/log4j.properties</param-value>
</context-param>
<listener>
<listener-class>
org.springframework.web.util.Log4jConfigListener
</listener-class>
</listener>
却出现找不到文件路径,
改怎么办