springboot2.6.4 集成swagger
时间: 2023-09-20 17:01:25 浏览: 125
基于SpringBoot2.6.4的电商系统源码.zip
5星 · 资源好评率100%
在Spring Boot 2.6.4版本中集成Swagger可以通过以下步骤实现:
1. 添加Swagger依赖:在项目的pom.xml文件中添加Swagger的依赖项,如下所示:
```xml
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-boot-starter</artifactId>
<version>3.1.0</version>
</dependency>
```
2. 配置Swagger:创建一个名为SwaggerConfig的配置类,并使用@EnableSwagger2注解启用Swagger。配置类示例如下:
```java
@Configuration
@EnableSwagger2
public class SwaggerConfig {
@Bean
public Docket api() {
return new Docket(DocumentationType.SWAGGER_2)
.select()
.apis(RequestHandlerSelectors.basePackage("<your-base-package>"))
.paths(PathSelectors.any())
.build()
.apiInfo(apiInfo());
}
private ApiInfo apiInfo() {
return new ApiInfoBuilder()
.title("API文档")
.description("API文档描述")
.version("1.0.0")
.build();
}
}
```
3. 启动应用程序:启动Spring Boot应用程序,Swagger将根据配置类中的设置生成并显示API文档。
4. 查看API文档:打开浏览器,并访问URL `http://localhost:8080/swagger-ui/`,即可查看生成的API文档。
以上就是在Spring Boot 2.6.4版本中集成Swagger的步骤。通过Swagger,您可以快速方便地查看和测试API接口,方便接口开发和文档编写。
阅读全文