parent
3fad55b6fe
commit
98fe1342cb
@ -0,0 +1,30 @@
|
|||||||
|
package com.yami.shop.security.admin.adapter;
|
||||||
|
|
||||||
|
import com.yami.shop.security.common.adapter.DefaultAuthConfigAdapter;
|
||||||
|
import org.springframework.stereotype.Component;
|
||||||
|
|
||||||
|
import java.util.Arrays;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author 菠萝凤梨
|
||||||
|
* @date 2022/3/28 14:57
|
||||||
|
*/
|
||||||
|
@Component
|
||||||
|
public class ResourceServerAdapter extends DefaultAuthConfigAdapter {
|
||||||
|
public static final List<String> EXCLUDE_PATH = Arrays.asList(
|
||||||
|
"/webjars/**",
|
||||||
|
"/swagger/**",
|
||||||
|
"/v3/api-docs/**",
|
||||||
|
"/doc.html",
|
||||||
|
"/swagger-ui.html",
|
||||||
|
"/swagger-resources/**",
|
||||||
|
"/captcha/**",
|
||||||
|
"/adminLogin",
|
||||||
|
"/mall4j/img/**");
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public List<String> excludePathPatterns() {
|
||||||
|
return EXCLUDE_PATH;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue