parent
7c93318895
commit
3fad55b6fe
@ -1,30 +0,0 @@
|
|||||||
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