Parcourir la source

安全路径白名单前缀修改

macro il y a 5 ans
Parent
commit
01c9615096

+ 16 - 15
mall-admin/src/main/resources/application.yml

@@ -13,21 +13,22 @@ jwt:
   expiration: 604800 #JWT的超期限时间(60*60*24)
   tokenHead: Bearer  #JWT负载中拿到开头
 
-ignored: #安全路径白名单
-  urls:
-    - /swagger-ui.html
-    - /swagger-resources/**
-    - /swagger/**
-    - /**/v2/api-docs
-    - /**/*.js
-    - /**/*.css
-    - /**/*.png
-    - /**/*.ico
-    - /webjars/springfox-swagger-ui/**
-    - /actuator/**
-    - /druid/**
-    - /admin/login
-    - /admin/register
+secure:
+  ignored:
+    urls: #安全路径白名单
+      - /swagger-ui.html
+      - /swagger-resources/**
+      - /swagger/**
+      - /**/v2/api-docs
+      - /**/*.js
+      - /**/*.css
+      - /**/*.png
+      - /**/*.ico
+      - /webjars/springfox-swagger-ui/**
+      - /actuator/**
+      - /druid/**
+      - /admin/login
+      - /admin/register
 
 aliyun:
   oss:

+ 16 - 15
mall-portal/src/main/resources/application.yml

@@ -13,21 +13,22 @@ jwt:
   expiration: 604800 #JWT的超期限时间(60*60*24)
   tokenHead: Bearer  #JWT负载中拿到开头
 
-ignored: #安全路径白名单
-  urls:
-    - /swagger-ui.html
-    - /swagger-resources/**
-    - /swagger/**
-    - /**/v2/api-docs
-    - /**/*.js
-    - /**/*.css
-    - /**/*.png
-    - /**/*.ico
-    - /webjars/springfox-swagger-ui/**
-    - /druid/**
-    - /actuator/**
-    - /sso/**
-    - /home/**
+secure:
+  ignored:
+    urls: #安全路径白名单
+      - /swagger-ui.html
+      - /swagger-resources/**
+      - /swagger/**
+      - /**/v2/api-docs
+      - /**/*.js
+      - /**/*.css
+      - /**/*.png
+      - /**/*.ico
+      - /webjars/springfox-swagger-ui/**
+      - /druid/**
+      - /actuator/**
+      - /sso/**
+      - /home/**
 
 # 自定义redis key
 redis:

+ 1 - 2
mall-security/src/main/java/com/macro/mall/security/config/IgnoreUrlsConfig.java

@@ -1,6 +1,5 @@
 package com.macro.mall.security.config;
 
-import lombok.Data;
 import lombok.Getter;
 import lombok.Setter;
 import org.springframework.boot.context.properties.ConfigurationProperties;
@@ -14,7 +13,7 @@ import java.util.List;
  */
 @Getter
 @Setter
-@ConfigurationProperties(prefix = "ignored")
+@ConfigurationProperties(prefix = "secure.ignored")
 public class IgnoreUrlsConfig {
 
     private List<String> urls = new ArrayList<>();