zl程序教程

您现在的位置是:首页 >  后端

当前栏目

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

SpringBoot错误 to 出现 url unable base swagger
2023-09-14 09:14:50 时间

错误想象 :

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")

在这里插入图片描述

在这里插入图片描述