springboot整合swagger3
时间: 2023-04-30 22:03:19 浏览: 191
springboot整合swagger
Spring Boot 整合 Swagger 3 的步骤主要有以下几步:
1. 在 pom.xml 中添加 Swagger 3 的依赖,如:
```
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>3.0.0</version>
</dependency>
```
2. 在 Spring Boot 应用的启动类上添加 @EnableSwagger2 注解来启用 Swagger。
3. 创建一个配置类,在其中配置 Swagger 的相关信息,如扫描的包、标题、描述等。
4. 启动应用,在浏览器中访问 http://host:port/swagger-ui.html 即可查看 API 文档。
请注意,这仅是一般步骤,具体实现细节可能因项目而异。
阅读全文