springboot restdocs
Springboot restdocs 적용기[2] 실전 사용
Springboot restdocs 적용기[2] 실전 사용
2022.06.07이전엔 기본적인 사용법에 대해서 알아봤습니다. 이번엔 custom 하고, 리펙토링을 진행해보겠습니다. 1. build.gradle 수정 이전과 달라진 부분만 주석으로 설명을 적겠습니다. plugins { id 'org.springframework.boot' version '2.6.4' id 'io.spring.dependency-management' version '1.0.11.RELEASE' id 'java' id 'org.asciidoctor.jvm.convert' version '3.3.2' } group = 'com.example' version = '0.0.1-SNAPSHOT' sourceCompatibility = '11' configurations { // config 추가 asciidoct..