相信一切,失望有日;怀疑一切,收获天明。——乔·赫伯特

就像这个issue里描述的一样:

https://github.com/springfox/springfox/issues/4061

springboot3.0引入:

1
2
3
4
5
            <dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-boot-starter</artifactId>
<version>3.0.0</version>
</dependency>

引入完毕后发现启动报错。。。于是查询了下

最后一次更新是三年前。。。

https://central.sonatype.com/artifact/io.springfox/springfox-boot-starter/versions

相对的springboot3是去年出的

https://central.sonatype.com/artifact/org.springframework.boot/spring-boot/versions

那咱们应该怎么集成swagger呢?用:

https://springdoc.org/

1
2
3
4
5
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
<version>2.2.0</version>
</dependency>