
Swagger 기본 설정 및 Nginx 설정
·
BackEnd
Swagger 적용1. build.gradle에 의존성 추가// Swaggerimplementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.0.2'2. application.yml에 프로퍼티 설정# Swagger 설정springdoc: default-consumes-media-type: application/json;charset=UTF-8 # 요청 default-produces-media-type: application/json;charset=UTF-8 # 응답 paths-to-match: /** # API 문서화 대상 경로 설정 swagger-ui: path: /swagger-ui.html # Swagger UI 접속 경로 ..