Swagger错误 SpringBoot使用Swagger2出现Unable to infer base url.

Swagger2错误

错误想象 :

SpringBoot使用Swagger2出现Unable to infer base url.

Unable to infer base url. This is common when using dynamic servlet registration or when the API is behind an API Gateway. The base url is the root of where all the swagger resources are served. For e.g. if the api is available at http://example.org/api/v2/api-docs then the base url is http://example.org/api/. Please enter the location manually:

在这里插入图片描述

解决方案

查看 SpringBoot的启动Application 上下文是否添加了 @EnableSwagger2 注解

@EnableSwagger2

在这里插入图片描述

扫描包没有添加, 进行添加

@ComponentScan(basePackages = "com.cpucode")

在这里插入图片描述

在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/qq_44226094/article/details/115678843