springfox怎么导入依赖
时间: 2024-10-11 18:12:06 浏览: 33
springfox-spring-web-2.9.2-API文档-中文版.zip
5星 · 资源好评率100%
Springfox是一个用于生成RESTful API文档的工具,它通常与Spring Boot集成使用。要在项目中导入Springfox的依赖,你需要在Maven或Gradle构建工具中添加相关库。
**对于Maven**:
```xml
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-boot-starter</artifactId>
<version>最新版本号</version>
</dependency>
```
记得替换`最新版本号`为Springfox的最新稳定版。
**对于Gradle** (Kotlin DSL):
```groovy
implementation 'io.springfox:springfox-boot-starter:最新版本号'
```
或者是旧的DSL:
```groovy
dependencies {
implementation 'io.springfox:springfox-boot-starter'
}
```
同样更新`latest版本号`。
在引入依赖后,还需要在启动类上添加@EnableSwagger2WebMvc注解启用Swagger功能。
阅读全文