old mode 100644
new mode 100755
| | |
| | | filterChainDefinitionMap.put("/swagger**/**", "anon"); |
| | | filterChainDefinitionMap.put("/webjars/**", "anon"); |
| | | filterChainDefinitionMap.put("/v2/**", "anon"); |
| | | |
| | | |
| | | filterChainDefinitionMap.put("/sys/annountCement/show/**", "anon"); |
| | | |
| | | //积木报表排除 |
| | | filterChainDefinitionMap.put("/jmreport/**", "anon"); |
| | | filterChainDefinitionMap.put("/**/*.js.map", "anon"); |
| | | filterChainDefinitionMap.put("/**/*.css.map", "anon"); |
| | | |
| | | |
| | | //大屏模板例子 |
| | | filterChainDefinitionMap.put("/test/bigScreen/**", "anon"); |
| | | filterChainDefinitionMap.put("/bigscreen/template1/**", "anon"); |
| | |
| | | filterChainDefinitionMap.put("/websocket/**", "anon");//系统通知和公告 |
| | | filterChainDefinitionMap.put("/newsWebsocket/**", "anon");//CMS模块 |
| | | filterChainDefinitionMap.put("/vxeSocket/**", "anon");//JVxeTable无痕刷新示例 |
| | | filterChainDefinitionMap.put("/drySocket/**", "anon");//干燥机通信 |
| | | |
| | | //性能监控——安全隐患泄露TOEKN(durid连接池也有) |
| | | //filterChainDefinitionMap.put("/actuator/**", "anon"); |
| | | //测试模块排除 |
| | | filterChainDefinitionMap.put("/test/seata/**", "anon"); |
| | | |
| | | // 干燥设备实时数据上传 |
| | | //filterChainDefinitionMap.put("/dry/dryOrder/**", "anon"); |
| | | |
| | | // 干燥测试 |
| | | filterChainDefinitionMap.put("/dry/dryResult/**", "anon"); |
| | | filterChainDefinitionMap.put("/dry/real/**", "anon"); |
| | | |
| | | |
| | | // 添加自己的过滤器并且取名为jwt |
| | | Map<String, Filter> filterMap = new HashMap<String, Filter>(1); |
| | | //如果cloudServer为空 则说明是单体 需要加载跨域配置【微服务跨域切换】 |