import io.swagger.annotations.Api;引入依赖包
时间: 2023-10-01 11:08:20 浏览: 270
如果你使用 Maven 进行项目管理,可以在 pom.xml 文件中添加以下依赖:
```xml
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>2.10.5</version>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>2.10.5</version>
</dependency>
```
如果你使用 Gradle 进行项目管理,可以在 build.gradle 文件中添加以下依赖:
```groovy
implementation 'io.springfox:springfox-swagger2:2.10.5'
implementation 'io.springfox:springfox-swagger-ui:2.10.5'
```
其中,`springfox-swagger2` 是 Swagger 的核心依赖包,`springfox-swagger-ui` 是 Swagger 的前端 UI 依赖包。
在你的 Spring Boot 应用程序中,添加 `@EnableSwagger2` 注解启用 Swagger:
```java
@SpringBootApplication
@EnableSwagger2
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
```
最后,在需要生成 API 文档的 Controller 类上添加 `@Api` 注解。
阅读全文