工程使用了maven,在pom.xml配置Spring以及log所属要的架包,如果不知道需要什么版本,或者如何配置,可以在以下网站寻找:
相应架包的配置如下:
注:之前没有配置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>