哪个版本的springfox与springboot 3.0.2兼容我想把springfox 3整合到springboot 3中。虽然我的控制台没有显示错误,但swagger ui没有出现。但是当我把我的springboot版本改为2.7.8时,swagger就可以工作了。所以我想知道哪个版本的SpringFox Swagger将与SpringBoot 3.0.2兼容,因为我的项目需要该版本的Spring Boot
ruoxqz4g1#
我曾经在使用springboot(2.2 ->2.7)时使用springfox 2。现在我发现使用OpenApi更可靠:
<dependency> <groupId>io.swagger.core.v3</groupId> <artifactId>swagger-annotations</artifactId> <version>2.2.15</version> </dependency> <dependency> <groupId>io.swagger.core.v3</groupId> <artifactId>swagger-models</artifactId> <version>2.2.15</version> </dependency> <dependency> <groupId>org.springdoc</groupId> <artifactId>springdoc-openapi-ui</artifactId> <version>1.7.0</version> </dependency>
你也可以尝试使用雅虎的swagger(elide):
<dependency> <groupId>com.yahoo.elide</groupId> <artifactId>elide-swagger</artifactId> <version>6.1.4</version> </dependency> <dependency> <groupId>org.springdoc</groupId> <artifactId>springdoc-openapi-ui</artifactId> <version>1.7.0</version> </dependency>
1条答案
按热度按时间ruoxqz4g1#
我曾经在使用springboot(2.2 ->2.7)时使用springfox 2。现在我发现使用OpenApi更可靠:
你也可以尝试使用雅虎的swagger(elide):