WebAppRootListener

1.webAppRootKey是为了在spring环境中配置Log4j,在程序中可以通过System.getProperty("webapp.root")来取得该属性值

2.要配合spring使用,需要在web.xml中加入
org.springframework.web.util.WebAppRootListener
这个监听器
或者
org.springframework.web.util.Log4jConfigListener,Log4jConfigListener
这个监听器,
因为这个监听器已经包含了WebAppRootListener的功能

3.如果再同一个web容器中部署了多个项目,B项目中可以取到在A项目中设置的webAppRootKey

4.总结:没什么用

你可能感兴趣的:(WebAppRootListener)