web123456

FilterChainDefinitionMap_parameter description

In fact, it is to construct a Map<String,String>

Add settings via DefaultShiroFilterChainDefinition

DefaultShiroFilterChainDefinition chain = new DefaultShiroFilterChainDefinition();
("/**", "jwt[permissive]");//jwt[permissive] is just an ordinary name
Map<String, String> filterChainDefinitionMap=chain.getFilterChainMap();

Customize a Map<String, String> setting

Map<String, String> filterChainDefinitionMap = new LinkedHashMap<String, String>();
// Pay attention to the filter configuration order. Do not reverse
//Configure exit filter, the specific exit code of Shiro has been implemented for us. After logging out, jump to the configured loginUrl
("/logout", "logout");
// Configure links that will not be intercepted. Sequence judgment
("/static/**", "anon");
("/ajaxLogin", "anon");
("/login", "anon");
("/**", "authc");
//Configure the default login interface address of Shiro. The login interface jump in front-end and back-end separation should be controlled by the front-end routing, and the background only returns json data
("/unauth");
// The link to jump after login is successful
//("/index");
//Unauthorized interface;
//("/403");
(filterChainDefinitionMap);