spring mvc 中log4j日志的问题
我在开发中,有时候会出现 一些人为的错误,导致spring mvc内部出现了错误,我希望能用log4j把这些错误给输出来,请问怎么配置哦?
------解决方案--------------------log4j配置文件 放到src目录下
在程序中。使用log.error() 来输出错误信息。。
------解决方案--------------------使用log.error() 来输出错误信息。。
------解决方案--------------------先定义的个log4j.properties,这个模板网上很多的
然后在你的web.xml中定义log4j的配置定义
<context-param>
<param-name>log4jConfigLocation</param-name>
<param-value>/WEB-INF/classes/log4j.properties</param-value>
</context-param>
<listener>
<listener-class>
org.springframework.web.util.Log4jConfigListener
</listener-class>
</listener>