springboot2.7.0整合swagger
时间: 2023-04-28 10:02:18 浏览: 475
Springboot2.7.0 + mybatis 搭建多数据源
Spring Boot 2.7.可以通过引入相应的依赖,轻松地整合Swagger。具体步骤如下:
1. 在pom.xml文件中添加Swagger依赖:
```
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>3..</version>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>3..</version>
</dependency>
```
2. 创建Swagger配置类:
```
@Configuration
@EnableSwagger2
public class SwaggerConfig {
@Bean
public Docket api() {
return new Docket(DocumentationType.SWAGGER_2)
.select()
.apis(RequestHandlerSelectors.basePackage("com.example.demo.controller"))
.paths(PathSelectors.any())
.build();
}
}
```
3. 在Controller类上添加Swagger注解:
```
@RestController
@Api(tags = "用户管理")
public class UserController {
@ApiOperation("获取用户列表")
@GetMapping("/users")
public List<User> getUsers() {
// ...
}
}
```
4. 启动应用程序,访问http://localhost:808/swagger-ui/即可查看Swagger文档。
以上就是Spring Boot 2.7.整合Swagger的简单步骤。
阅读全文