spring学习之三
做开发的应该注意到Log4jConfigServlet,供配置spring应用的日志使用,其使用方法同ContextLoaderServlet.
比如:在web中配置
<!-- Log4j -->
<context-param>
<param-name>log4jConfigLocation</param-name>
<param-value>classpath:/log4j.properties</param-value>
</context-param>
加上
<servlet>
<servlet-name>lo4jConfigServlet</servlet-name>
<servlet-class>org.springframework.web.util.Lo4jConfigServlet></servlet-class>
</servlet>
或者
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
欢迎关注公众号:Java后端技术全栈