build.gradle에 아래의 두 가지 추가해줌 implementation 'io.springfox:springfox-swagger-ui:3.0.0' implementation 'io.springfox:springfox-boot-starter:3.0.0' SwaggerConfig 파일 추가해줌 package com.example.javafullcourse.swagger; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import springfox.documentation.builders.ApiInfoBuilder; import springfox.do..