依賴
pom依賴
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>2.9.2</version>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>2.9.2</version>
</dependency>
複製程式碼
gradle
compile 'io.springfox:springfox-swagger2:2.9.2'
compile 'io.springfox:springfox-swagger-ui:2.9.2'
複製程式碼
Swagger配置
@Configuration
// 開啟SpringFox 對 Swagger2 的支援
@EnableSwagger2
public class Swagger2 {
@Bean
public Docket petApi() {
// 說明要生成的文件是swagger 2.0的
return new Docket(DocumentationType.SWAGGER_2)
// 生成builder,為下邊做準備
.select()
// 定義為哪些controller或model生成文件
.apis(RequestHandlerSelectors.any())
// 定義哪些路徑需要包含
.paths(PathSelectors.any()).build();
}
}
複製程式碼
使用
http://localhost:8080/swagger-ui.html
guava的依賴問題
2.9.2及之前存在guava的依賴問題,issue,預計下個版本解決