apache-shiro杂记(三) 用了apache-shiro后,HttpSession.getServletContext() API无法正常工作了

阅读更多
用了apache-shiro以后,偶然发现servlet环境下(我开发时用的servlet3.0) HttpSession.getServletContext() 一直返回的是null
查看了ShiroHttpSession实现类的源代码,结合shiro官方文档。发现修改web.xml可以解决这个问题。




	
	
		shiroFilter
		org.springframework.web.filter.DelegatingFilterProxy
		
			targetFilterLifecycle
			true
		
	
	
		shiroFilter
		/*
	



:)

你可能感兴趣的:(shiro,servlet,ServletContext)