SpringBoot整合Shiro的两种方式

我们知道在SSM整合shiro时,需要在web.xml中配置


	
		shiroFilter
		org.springframework.web.filter.DelegatingFilterProxy
		 
		
			targetFilterLifecycle
			true
		 
		
		
			targetBeanName
			shiro
		
	

还有在xml中配置基本的


	
		
		
	

 	

你可能感兴趣的:(SpringBoot)