springBoot3.0版本怎么集成swagger3.0版本,附上详细步骤
时间: 2023-05-31 20:04:03 浏览: 182
springboot集成swagger
下面是SpringBoot 3.0集成Swagger 3.0的详细步骤:
1. 在pom.xml文件中添加Swagger 3.0的依赖:
```xml
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-boot-starter</artifactId>
<version>3.0.0</version>
</dependency>
```
2. 在Spring Boot应用程序的启动类上添加Swagger 3.0注解:
```java
@Configuration
@EnableSwagger2
public class SwaggerConfig {
@Bean
public Docket api() {
return new Docket(DocumentationType.SWAGGER_2)
.select()
.apis(RequestHandlerSelectors.basePackage("com.example.demo"))
.paths(PathSelectors.any())
.build();
}
}
```
3. 在应用程序的application.yml或application.properties文件中添加Swagger 3.0的配置:
```yml
springfox.documentation.swagger.v2.path: /api-docs
```
4. 启动应用程序,访问http://localhost:8080/swagger-ui/可以查看Swagger 3.0的UI界面。
至此,SpringBoot 3.0版本集成Swagger 3.0版本的步骤就完成了。
阅读全文