io.springfox:springfox-swagger2:2.9.2' not found
时间: 2023-08-06 22:05:59 浏览: 286
这个错误通常是由于在项目的依赖中没有正确添加 Swagger2 相关的依赖所引起的。你需要在你的项目的 pom.xml 文件中添加以下依赖:
```
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>2.9.2</version>
</dependency>
```
如果你使用的是 Gradle 构建工具,你需要在你的 build.gradle 文件中添加以下依赖:
```
implementation 'io.springfox:springfox-swagger2:2.9.2'
```
添加完依赖后,重新构建项目即可解决该问题。
相关问题
Dependency 'io.springfox:springfox-swagger2:2.9.2' not found
这个错误提示是因为你的项目中没有引入 `io.springfox:springfox-swagger2:2.9.2` 这个依赖包。在使用 Swagger 构建 API 文档时,需要引入该依赖包,在 `pom.xml` 文件中添加如下依赖即可:
```xml
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>2.9.2</version>
</dependency>
```
如果你使用的是 Gradle 构建工具,可以在 `build.gradle` 文件中添加如下依赖:
```
implementation 'io.springfox:springfox-swagger2:2.9.2'
```
添加完依赖包后,重新编译运行项目即可。
阅读全文