swagger-ui 在Spring boot项目中报错Unable to infer base url

Swagger-UI现在在Spring Boot项目中引用非常的简单
1. pom.xml中引入dependency,注意版本兼容性


io.springfox
springfox-swagger2
${swagger.version}


io.springfox
springfox-swagger-ui
${swagger.version}

2.Main方法启动参数中加入注解 @EnableSwagger2
3.@Configuration注解的类,或者是Main方法类中加入Docket Bean:

@Bean
public Docket createRestApi() {
ParameterBuilder tokenPar = new ParameterBuilder();
List pars = new ArrayList();
tokenPar.name("token").description("Token").modelRef(new ModelRef("string")).parameterType("header")
.required(false).build();
pars.add(tokenPar.build());
return new Docket(DocumentationType.SWAGGER_2).apiInfo(apiInfo()).select()
.apis(RequestHandlerSelectors.basePackage("com.iteye.wwwcomy.controller")).paths(PathSelectors.any())
.build().globalOperationParameters(pars);
}

private ApiInfo apiInfo() {
Contact contact = new Contact("wwwcomy", "", "[email protected]");
return new ApiInfoBuilder().title("Web Diary").description("Web Diary").contact(contact).version("1.0").build();
}


启动之后访问swagger ui默认地址 http://localhost:8080/swagger-ui.html即可

如果访问后出现弹出框 提示Unable to infer base url XXX,表面意思上好像是Base url的问题。 如果确认自己确实没有使用context url的话,看一下自己的spring security是不是启用了,如果启用的话会被拦截掉, swagger ui会误报成这个错误。 把swagger ui资源排除在外的配置:

@Configuration
public class WebSecurityConfiguration extends WebSecurityConfigurerAdapter {

@Override
public void configure(WebSecurity web) throws Exception {
web.ignoring().antMatchers("/v2/api-docs", "/configuration/ui", "/swagger-resources", "/configuration/security", "/swagger-ui.html", "/webjars/**");
}

}


我本地是把securiy先禁用了,application.properties设置
security.basic.enabled=false

你可能感兴趣的:(Spring)