我对spring狐狸swagger ui基本URL感到困惑,他们没有指向正确的URL。
我刚刚在上下文中部署了战争,因此该应用程序位于127.0.0.1:8080/bff
中,我设法大张旗鼓并取得了成功,现在它运行在127.0.0.1:8080/bff/swagger-ui.html
中,但是当我尝试测试api时,指向127.0.0.1:8080/bff/v2/api-docs/api/v1/home/profile
。为什么会有v2/api-docs
!?
我知道swagger-ui上的API列表就是从该列表填充的,但是为什么我们在测试API时将其注入URL?因为我所有的API都位于127.0.0.1:8080/bff/api/v1
这是代码。
@Configuration
@EnableSwagger2
public class SwaggerConfig {
@Autowired
private GitVersionPropertiesConfig gitVersionPropertiesConfig;
@Bean
public Docket api() {
return new Docket(DocumentationType.SWAGGER_2)
.globalOperationParameters(
Lists.newArrayList(new ParameterBuilder()
.name("Authorization")
.description("OAUTH2 Token")
.modelRef(new ModelRef("string"))
.parameterType("header")
.required(false)
.build()))
.apiInfo(apiInfo())
.pathMapping("/")
.pathProvider(new RelativePathProvider(null) {
@Override
public String getApplicationBasePath() {
return "/bff/";
}
})
.select()
.apis(RequestHandlerSelectors.any())
.paths(PathSelectors.regex("/api.*"))
.build();
}
ApiInfo apiInfo() {
String desc = "Bima Friends Forever API<br>"
+ "Current Branch : <b>"+gitVersionPropertiesConfig.getGitBranch()+"</b><br>"
+ "Timestamp : <b>"+gitVersionPropertiesConfig.getGitBuildTime()+"</b>";
return new ApiInfoBuilder()
.title("BFF - Hutchison")
.description(desc)
.version(gitVersionPropertiesConfig.getGitCommitIdAbbrev())
.build();
}
}
这是临时解决方法,但不是永久解决方法。
打开浏览器控制台并运行window.swaggerUi.api.setBasePath('/ bff');
服务器:Wildfly Swagger UI版本:2.7.0
谢谢。
答案 0 :(得分:0)
我设法修复它。.罪魁祸首是jboss-web.xml上下文
以前
<jboss-web>
<context-root>/bff/</context-root>
</jboss-web>
修复:
<jboss-web>
<context-root>/bff</context-root>
</jboss-web>
天哪...