1. Swagger개발한 Rest API를 편리하게 문서화하는 것이를 통해서 관리 및 제 3의 사용자가 편리하게 API를 호출해보고 테스트 할 수 있는 도구2. SpringBoot에서 Swagger 설정build.gradle 파일에 dependency 추가// Swaggerimplementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.0.2'main에 config 파일 추가package com.example.paymentsystem.config;import io.swagger.v3.oas.models.OpenAPI;import io.swagger.v3.oas.models.info.Info;import org.springframework.conte..