Swagger UI용 게이트웨이를 설정하는 방법
문제가 있는 경우 입력과 함께 모달에 다음 메시지가 표시됩니다.
Unable to infer base url. This is common when using dynamic servlet registration or when the API is behind an API Gateway. The base url is the root of where all the swagger resources are served. For e.g. if the api is available at http://example.org/api/v2/api-docs then the base url is http://example.org/api/. Please enter the location manually
해결책
올바르게 사용하려면 경로 목록을 허용해야 합니다.
예
스프링 시큐리티 수정 예시
private static final String[] AUTH_WHITELIST = {
"/swagger-resources/**",
"/swagger-ui.html",
"/v2/api-docs",
"/webjars/**"
};
@Override
public void configure(WebSecurity web) throws Exception {
web.ignoring().antMatchers(AUTH_WHITELIST);
}
source
Spring Cloud 게이트웨이 조건자
spring:
cloud:
gateway:
routes:
- id: swagger-ui
uri: ${swagger-ui_url}
predicates:
- Path=/swagger-ui/**,/swagger-resources/**,/swagger-ui.html,/v2/api-docs,/webjars/**,/view/**
그것이 당신을 도울 수 있기를 바랍니다!
Reference
이 문제에 관하여(Swagger UI용 게이트웨이를 설정하는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/mxglt/how-to-setup-a-gateway-for-swagger-ui-44a4텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)