swagger3 java配置
时间: 2023-07-11 17:44:29 浏览: 141
Swagger3是一个非常流行的API文档生成工具,它支持Java,下面是Swagger3的Java配置步骤:
1.添加Swagger3依赖
在项目的pom.xml文件中,添加以下依赖:
```
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-boot-starter</artifactId>
<version>3.0.0</version>
</dependency>
```
2.配置Swagger3
在Spring Boot的启动类中,添加Swagger3的配置:
```
@EnableSwagger2WebMvc
@Configuration
public class SwaggerConfig {
@Bean
public Docket api() {
return new Docket(DocumentationType.SWAGGER_2)
.select()
.apis(RequestHandlerSelectors.basePackage("com.example.demo.controllers"))
.paths(PathSelectors.any())
.build()
.apiInfo(apiInfo());
}
private ApiInfo apiInfo() {
return new ApiInfoBuilder()
.title("API文档")
.description("这是一个API文档")
.version("1.0.0")
.build();
}
}
```
其中,`@EnableSwagger2WebMvc`注解用于启用Swagger3,`Docket`对象用于配置API的相关信息,`api`方法用于指定API的扫描路径和版本等信息,`apiInfo`方法用于指定API文档的标题、描述和版本等信息。
3.访问Swagger3
配置完成后,启动项目,访问`http://localhost:8080/swagger-ui/`即可查看API文档。
以上就是Swagger3的Java配置步骤。
阅读全文