SpringBoot 설정 차단기 가 swagger 를 무효 화 합 니 다.
8140 단어 SpringBootSpringBoot
Springboot 에서 차단 기 를 사용 하면 Swagger 에 접근 할 수 없습니다.
원인.
차단기 가 모든 요청 을 차단 하여 swagger 도 차단 되 었 습 니 다. 감정 권 을 진행 할 때 특정한 인자 나 요청 헤더 정 보 를 입력 해 야 할 수도 있 습 니 다. 그러면 우 리 는 swagger 를 정상적으로 통과 할 수 없습니다.
해결 하 다.
정적 자원 처리 기 를 설정 하고 swagger 의 접근 경 로 를 제외 하면 문 제 를 해결 할 수 있 습 니 다.
import com.eechain.sso.interceptor.AuthInterceptor;
import com.eechain.sso.interceptor.ResponseInterceptor;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
@Configuration
public class SpringConfig implements WebMvcConfigurer {
private AuthInterceptor authInterceptor;
@Autowired
public void setAuthInterceptor(AuthInterceptor authInterceptor) {
this.authInterceptor = authInterceptor;
}
@Override
public void addInterceptors(InterceptorRegistry registry) {
registry
.addInterceptor(authInterceptor)
.addPathPatterns("/**")
.excludePathPatterns("/account/**")
//
.excludePathPatterns("/js/**", "/css/**", "/images/**", "/lib/**",
"/fonts/**")
// swagger-ui
.excludePathPatterns("/swagger-resources/**", "/webjars/**",
"/v2/**", "/swagger-ui.html/**");
registry.addInterceptor(responseInterceptor).addPathPatterns("/**");
}
//
@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
registry.addResourceHandler("swagger-ui.html")
.addResourceLocations("classpath:/META-INF/resources/");
registry.addResourceHandler("/webjars/**")
.addResourceLocations("classpath:/META-INF/resources/webjars/");
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
【Java・SpringBoot・Thymeleaf】 에러 메세지를 구현(SpringBoot 어플리케이션 실천편 3)로그인하여 사용자 목록을 표시하는 응용 프로그램을 만들고, Spring에서의 개발에 대해 공부하겠습니다 🌟 마지막 데이터 바인딩에 계속 바인딩 실패 시 오류 메시지를 구현합니다. 마지막 기사🌟 src/main/res...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.