SpringMVC配置Log4j

工程使用了maven,在pom.xml配置Spring以及log所属要的架包,如果不知道需要什么版本,或者如何配置,可以在以下网站寻找:

http://mvnrepository.com/

相应架包的配置如下:
SpringMVC配置Log4j_第1张图片
Paste_Image.png

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

web.xml配置:

    log4jConfigLocation
    classpath:log4j.properties



    org.springframework.web.util.Log4jConfigListener

在进行配置log4j.properties(具体可以学习log4j配置,以下只是个例子)
Paste_Image.png

你可能感兴趣的:(SpringMVC配置Log4j)