springmvc下springfox+swagger2报错解决

运行后打开连接http://localhost:port/项目名/swagger-ui.html,弹出如下报错信息

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:

检查http://localhost:port/项目名/api-docs,报404错误,没有生成json。是swagger配置问题,没有扫描到接口,spring-mvc.xml添加扫描的配置类

修改后重新运行,问题解决。解决的好久


你可能感兴趣的:(springmvc下springfox+swagger2报错解决)