美文网首页
SpringMVC配置Log4j

SpringMVC配置Log4j

作者: __小泽泽__ | 来源:发表于2017-04-22 17:49 被阅读0次
工程使用了maven,在pom.xml配置Spring以及log所属要的架包,如果不知道需要什么版本,或者如何配置,可以在以下网站寻找:

http://mvnrepository.com/

相应架包的配置如下:
Paste_Image.png

注:之前没有配置packaging打包为war,默认是打包为jar,所以用maven构建完,再用tomcat跑工程一直跑不起来

web.xml配置:
<context-param>
    <param-name>log4jConfigLocation</param-name>
    <param-value>classpath:log4j.properties</param-value>
</context-param>

<listener>
    <listener-class>org.springframework.web.util.Log4jConfigListener</listener-class>
</listener>
在进行配置log4j.properties(具体可以学习log4j配置,以下只是个例子)
Paste_Image.png

相关文章

网友评论

      本文标题:SpringMVC配置Log4j

      本文链接:https://www.haomeiwen.com/subject/ypbszttx.html