web.xml:
spring web.xml
原创
©著作权归作者所有:来自51CTO博客作者yingtju的原创作品,请联系作者获取转载授权,否则将追究法律责任
context-param:contextConfigLocation:用于ContextLoaderListener
<param-name>contextConfigLocation</param-name>
<param-value>classpath*:applicationContext*.xml</param-value>
context-param:log4jConfigLocation:用于Log4jConfigListener
listener:ContextLoaderListener:启动Spring容器初始化
listener:Log4jConfigListener:初始化log4j
listener:org.springframework.security.ui.session.HttpSessionEventPublisher:貌似没用
每次HttpSession开始或者结束的时候,
web.xml中的HttpSessionEventPublisher都会发布一个 ApplicationEvent事件到Spring的ApplicationContext。
这是至关重要的,因为这个机制允许在session结束的时候,SessionRegistryImpl会得到通知。
这解释了为什么我们需要在ConcurrentSessionFilter中指向 SessionRegistryImpl的实例。
上一篇:jQuery 选择器
下一篇:CSS 代码规范

提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章