|  |  |  | 
|---|
|  |  |  | shiroFilterFactoryBean.setSecurityManager(securityManager); | 
|---|
|  |  |  | Map<String, String> map = new LinkedHashMap<>(); | 
|---|
|  |  |  | // 路径拦截配置 | 
|---|
|  |  |  | map.put("/system/dictData/companyUserRules","anon"); | 
|---|
|  |  |  | map.put("/system/login", "anon"); | 
|---|
|  |  |  | map.put("/system/logout", "anon"); | 
|---|
|  |  |  | map.put("/system/loginH5", "anon"); | 
|---|
|  |  |  | map.put("/common/captcha", "anon"); | 
|---|
|  |  |  | map.put("/business/areas/*", "anon"); | 
|---|
|  |  |  | map.put("/public/uploadPicture","anon"); | 
|---|
|  |  |  | map.put("/public/uploadLocal","anon"); | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | // - 放行swagger | 
|---|
|  |  |  | map.put("/doc.html", "anon"); | 
|---|
|  |  |  | map.put("/webjars/**", "anon"); | 
|---|