浏览代码

穿山甲数据报表数据接口统计

syh 5 年之前
父节点
当前提交
9faf1d3511
共有 1 个文件被更改,包括 1 次插入2 次删除
  1. 1 2
      jeecg-boot-module-system/src/main/java/org/jeecg/config/ShiroConfig.java

+ 1 - 2
jeecg-boot-module-system/src/main/java/org/jeecg/config/ShiroConfig.java

@@ -148,10 +148,9 @@ public class ShiroConfig {
 		filterChainDefinitionMap.put("/ks/web/test", "anon");
         filterChainDefinitionMap.put("/ureport/**", "anon");
         filterChainDefinitionMap.put("/ctop/advertiser/**", "anon");
-		filterChainDefinitionMap.put("/pangolin/**", "anon");
 
 		// 添加自己的过滤器并且取名为jwt
-		Map<String, Filter> filterMap = new HashMap<String, Filter>(1);
+		Map<String, Filter> filterMap = new HashMap<>(1);
 		filterMap.put("jwt", new JwtFilter());
 		shiroFilterFactoryBean.setFilters(filterMap);
 		// <!-- 过滤链定义,从上向下顺序执行,一般将/**放在最为下边