我的项目使用spring cloud oauth用 "oauthtoken "端点来验证用户,但是我找不到任何方法在swagger ui上显示这个api操作。我应该怎么做?
Swagger配置。
@EnableSwagger2
@Configuration
public class SwaggerConfiguration {
@Bean
public Docket productApi() {
return new Docket(DocumentationType.SWAGGER_2)
.groupName("all").select()
.apis(RequestHandlerSelectors.basePackage("com.demo.userservice.api.controller"))
.paths(regex("/api.*"))
.build()
.apiInfo(metaInfo());
}
private ApiInfo metaInfo() {
ApiInfo apiInfo = new ApiInfo(
"Spring Boot Swagger USERSERVICE API",
"Spring Boot Swagger USERSERVICE API",
"1.0",
"Terms of Service",
new Contact("userservice", "",
""),
"Apache License Version 2.0",
"https://www.apache.org/licesen.html", new ArrayList<VendorExtension>()
);
return apiInfo;
}
}
一个解决方案是打开所有端点来显示 oauth/token
这样
.apis(RequestHandlerSelectors.any())
.paths(PathSelectors.any()).build().pathMapping("/")
或
如果你想只显示想要的路径,比如 /api/.*
然后,你可以使用这个来修改oauth的端点。
@Configuration
@EnableAuthorizationServer
public class EndPointModificationConfig extends AuthorizationServerConfigurerAdapter {
@Override
public void configure(AuthorizationServerEndpointsConfigurer endpoints) {
endpoints
.pathMapping("/oauth/token", "/api/oauth/token");
}
}
然后用这个来获取所有api
.apis(RequestHandlerSelectors.any())