| | |
| | | filterChainDefinitionMap.put("/eam/repairOrder/equipmentAvailability", "anon"); |
| | | //生产故障间隔时间报表排除 |
| | | filterChainDefinitionMap.put("/eam/faultIntervalTime/getMTBF", "anon"); |
| | | filterChainDefinitionMap.put("/eam/faultIntervalTime/**","anon"); |
| | | //设备可开动率报表排除 |
| | | filterChainDefinitionMap.put("/eam/repairOrder/getStartRate", "anon"); |
| | | filterChainDefinitionMap.put("/eam/repairOrder/getStartRate", "anon"); |
| | | //大屏模板例子 |
| | | filterChainDefinitionMap.put("/test/bigScreen/**", "anon"); |
| | | filterChainDefinitionMap.put("/bigscreen/template1/**", "anon"); |
| | |
| | | //测试模块排除 |
| | | filterChainDefinitionMap.put("/test/seata/**", "anon"); |
| | | |
| | | |
| | | // 添加自己的过滤器并且取名为jwt |
| | | Map<String, Filter> filterMap = new HashMap<String, Filter>(1); |
| | | //如果cloudServer为空 则说明是单体 需要加载跨域配置【微服务跨域切换】 |