一篇文章带你解决 Unable to infer base url. This is common when using dynamic servlet registra
程序员文章站
2022-03-11 16:10:43
我这里使用的是2.10.2 版本的 swagger,这个版本将由于支持了WebFlux,所以之前的@EnableSwagger2就移除掉了,变为@EnableSwagger2WebMvc以及@EnableSwagger2WebFlux io.springfox springfox-swagger2
我这里使用的是2.10.2 版本的 swagger,这个版本将由于支持了WebFlux,所以之前的@EnableSwagger2
就移除掉了,变为@EnableSwagger2WebMvc
以及@EnableSwagger2WebFlux
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>2.10.2</version>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>2.10.2</version>
</dependency>
学习 SpringBoot 整合 Swagger2 ,配置好之后突然遇到了这个问题
网上搜各种答案,尝试了:
(1)启动类加扫描 config 路径
(2)启动类加注解 @EnableSwagger2WebFlux
都不好使 。。。。。
最后换了版本,换成了 2.9.2 版本的 swagger2
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>2.9.2</version>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>2.9.2</version>
</dependency>
然后就好使了,真奇怪。。。。。
有知道什么原因的,欢迎大佬留言讨论
本文地址:https://blog.csdn.net/nanhuaibeian/article/details/109245228