我有一个REST API,并且包含并正在运行springfox swagger v2.7.0。我已将Docket分组在groupName api下。我期望swagger-ui.html将在http://localhost:5000/api/swagger-ui.html上打开。但是,我看到它仍然在http://localhost:5000/swagger-ui.html上打开。
是否可以在/api/swagger-ui.html中打开swagger-ui.html? 这是我使用的代码:
@Bean
public Docket api() {
return new Docket(DocumentationType.SWAGGER_2)
.groupName("api")
.select()
.apis(RequestHandlerSelectors.basePackage("com.api.controller"))
.paths(PathSelectors.ant("/api/**"))
.build().apiInfo(apiEndPointsInfo());
}