Why does springfox-swagger2 UI tell me “Unable to infer base url.”

前端 未结 13 904
醉话见心
醉话见心 2020-12-10 11:01

Why does springfox-swagger2 UI tell me Unable to infer base url. As far as I know, I am using a typical Swagger spring-boot configuration.

As you can

13条回答
  •  春和景丽
    2020-12-10 11:24

    Add @EnableSwagger2 annotation in the main file of Springboot application

    @SpringBootApplication
    @EnableSwagger2
    public class SampleApplication {
    
        public static void main(String[] args) {
            SpringApplication.run(SampleApplication.class, args);
        }
    
    }
    

提交回复
热议问题