Shiro 过滤器 anno 配置未生效,请求仍被拦截

项目场景:

项目Springboot +shiro +Gateway


问题描述

请求路径添加到了过滤器,配置anno

但请求仍被最后配置的/**,jwtfilter拦截

//测试模块排除
filterChainDefinitionMap.put("/hello/**", "anon");

// 添加自己的过滤器并且取名为jwt
Map filterMap = new HashMap(1);
Object cloudServer = env.getProperty(CommonConstant.CLOUD_SERVER_KEY);
filterMap.put("jwt", new JwtFilter());
shiroFilterFactoryBean.setFilters(filterMap);
// 
                    

你可能感兴趣的:(java,spring,boot,开发语言)