SpringBoot集成Swagger2出现Unable to infer base url.

现象:

SpringBoot集成Swagger2进行接口发布,SpringBoot版本:2.0.1,Swagger2版本:2.8.0

IDEA直接运行可以直接访问,但是maven打成war包通过tomcat发布,访问swagger-ui.html就会出现Unable to infer base url.的报错

解决方法:

不求甚解,尝试几种解决方法,问题解决

方法1、Application增加@EnableSwagger2注释

方法2、Application 继承 SpringBootServletInitializer类

Application extends SpringBootServletInitializer

你可能感兴趣的:(SpringBoot集成Swagger2出现Unable to infer base url.)