Parcourir la source

高速平台对接

pull/58/head
chenjiandong il y a 1 an
Parent
révision
b538da27b1
2 fichiers modifiés avec 9 ajouts et 0 suppressions
  1. +2
    -0
      src/main/java/com/tuoheng/gateway/config/WebSecurityConfig.java
  2. +7
    -0
      src/main/java/com/tuoheng/gateway/constants/AuthorityConstant.java

+ 2
- 0
src/main/java/com/tuoheng/gateway/config/WebSecurityConfig.java Voir le fichier

@@ -73,6 +73,8 @@ public class WebSecurityConfig {
.pathMatchers("/pilot/admin/**").hasAnyAuthority(AuthorityConstant.SCOPE_ADMIN, AuthorityConstant.SCOPE_TUOHNEG_PILOT_ADMIN)
.pathMatchers("/hhz/admin/**").hasAnyAuthority(AuthorityConstant.SCOPE_ADMIN, AuthorityConstant.SCOPE_TUOHNEG_HHZ_ADMIN)
.pathMatchers("/hhz/api/**").hasAnyAuthority(AuthorityConstant.SCOPE_ADMIN, AuthorityConstant.SCOPE_TUOHNEG_HHZ_MP)
.pathMatchers("/freeway/admin/**").hasAnyAuthority(AuthorityConstant.SCOPE_ADMIN, AuthorityConstant.SCOPE_TUOHNEG_FREEWAY_ADMIN)
.pathMatchers("/freeway/miniprogram/**").hasAnyAuthority(AuthorityConstant.SCOPE_ADMIN, AuthorityConstant.SCOPE_TUOHNEG_FREEWAY_MP)
.pathMatchers("/oidc/admin/tenant/**", "/oidc/admin/client/**").hasAnyAuthority(AuthorityConstant.SCOPE_ADMIN, AuthorityConstant.SCOPE_TUOHNEG_OIDC_ADMIN)
.pathMatchers("/oidc/admin/user/**").authenticated()
//.pathMatchers(PERMIT_PATH).permitAll()

+ 7
- 0
src/main/java/com/tuoheng/gateway/constants/AuthorityConstant.java Voir le fichier

@@ -33,4 +33,11 @@ public class AuthorityConstant {

public static final String SCOPE_TUOHNEG_HHZ_MP = "SCOPE_tuoheng-hhz-mp";

/**
* FreeWay 用户权限
*/
public static final String SCOPE_TUOHNEG_FREEWAY_ADMIN = "SCOPE_tuoheng-freeway-admin";

public static final String SCOPE_TUOHNEG_FREEWAY_MP = "SCOPE_tuoheng-freeway-mp";

}

Chargement…
Annuler
Enregistrer