Notice
Recent Posts
Recent Comments
Link
아님말고
spring cloud gateway 에서의 swagger 사용시 주의 본문
[환경] spring boot : 2.7.5
swagger는 springfox 와 springdoc이 있는데, 여기서는 springdoc을 이용한다.
[실패] 아래와 같이 의존성을 추가하여 /swagger-ui/index.html을 실행하면 404 오류가 발생한다.
implementation 'org.springframework.cloud:spring-cloud-starter-gateway'
implementation 'org.springdoc:springdoc-openapi-ui:1.6.15'
[해결] gateway는 webflux을 사용하기에 springdoc 의존성을 변경하여 실행하니 성공
implementation 'org.springframework.cloud:spring-cloud-starter-gateway'
implementation 'org.springdoc:springdoc-openapi-webflux-ui:1.6.15'
'Java' 카테고리의 다른 글
[AWS] DynamoDB + local 설치 (0) | 2023.08.22 |
---|---|
Swagger + Spring Boot 3 (0) | 2023.08.18 |
[AWS] DynamoDB + Spring boot 연동하기 (0) | 2023.08.03 |
[AWS] AWS SDK For Java 버전1과 2의 차이 (0) | 2023.08.02 |
[gradle] spring boot + XSS filter 설정 (0) | 2023.05.31 |
Comments