shiro 自定义logout路径

分享一个shiro 自定义 logout 路径的方法。(亲测可用)

shiro默认logout路径是主页,可是实际开发中并不想这样。尝试了网上的两种方法都失败了。在无数的疼苦挣扎中找到了一种适合自己的方法。我用的框架是Spring + SpringMVC + Spring data jpa 。需要的朋友可以参考一下。

在shiro的配置文件中设置。


	 
         
     
	
	
	
		
		
		
		
			
				/login = authc
				/logout = logout
			
		
		
		    
		        
		    
		
	

logout需要配置三个地方。一个是bean , 一个是 filterChainDefinitions , 一个是 filters。

redirectUrl 的 value 便是自定义 logout 的路径。为了避免不必要的错误,建议把bean的id设置为logout。

希望能帮到大家!

个人主页:http://www.itit123.cn/ 更多干货等你来拿

你可能感兴趣的:(成长日志)