작성자 없음
작성자 정보가 삭제된 글입니다.
작성
·
1.7K
9
compile 'io.springfox:springfox-boot-starter:3.0.0'
두 개 각각 implementation할 필요 없이
이것만 추가해주시면 스프링부트와 통합된 스웨거가 설치됩니다. 따로 스프링 코어 플러그인 등 설정해주실 필요 없어요
답변 4
4
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-boot-starter</artifactId>
<version>3.0.0</version>
</dependency>
pom.xml에 이렇게 넣으시면 됩니다.
1
1
0