本文整理汇总了Java中springfox.documentation.service.ApiKey类的典型用法代码示例。如果您正苦于以下问题:Java ApiKey类的具体用法?Java ApiKey怎么用?Java ApiKey使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
ApiKey类属于springfox.documentation.service包,在下文中一共展示了ApiKey类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: api
import springfox.documentation.service.ApiKey; //导入依赖的package包/类
@Bean
public Docket api() {
return new Docket(DocumentationType.SWAGGER_2)//
.select()//
.apis(RequestHandlerSelectors.any())//
.paths(Predicates.not(PathSelectors.regex("/error")))//
.build()//
.apiInfo(metadata())//
.useDefaultResponseMessages(false)//
.securitySchemes(new ArrayList<>(Arrays.asList(new ApiKey("Bearer %token", "Authorization", "Header"))))//
.tags(new Tag("users", "Operations about users"))//
.tags(new Tag("ping", "Just a ping"))//
.genericModelSubstitutes(Optional.class);
}
开发者ID:murraco,项目名称:spring-boot-jwt,代码行数:16,代码来源:SwaggerConfig.java
示例2: jwtTokenKey
import springfox.documentation.service.ApiKey; //导入依赖的package包/类
private ApiKey jwtTokenKey() {
return new ApiKey("X-Authorization", "JWT token", "header");
}
开发者ID:osswangxining,项目名称:iotplatform,代码行数:4,代码来源:SwaggerConfiguration.java
示例3: apiKeys
import springfox.documentation.service.ApiKey; //导入依赖的package包/类
private List<SecurityScheme> apiKeys() {
return Collections.singletonList(new ApiKey("Authorization", "Authorization", "header"));
}
开发者ID:BakkerTom,项目名称:happy-news,代码行数:4,代码来源:SwaggerConfig.java
示例4: apiKey
import springfox.documentation.service.ApiKey; //导入依赖的package包/类
private ApiKey apiKey() {
return new ApiKey("x-auth-token", "x-auth-token", "header");
}
开发者ID:tvajjala,项目名称:interview-preparation,代码行数:4,代码来源:ApiDocumentationConfig.java
示例5: apiKey
import springfox.documentation.service.ApiKey; //导入依赖的package包/类
private ApiKey apiKey() {
return new ApiKey("mykey", "api_key", "header");
}
开发者ID:tvajjala,项目名称:interview-preparation,代码行数:4,代码来源:ApiDocumentationConfig.java
示例6: apiKey
import springfox.documentation.service.ApiKey; //导入依赖的package包/类
private ApiKey apiKey() {
return new ApiKey("mykey", "api_key", "header");
}
开发者ID:candrews,项目名称:availability,代码行数:4,代码来源:SwaggerConfig.java
示例7: apiKey
import springfox.documentation.service.ApiKey; //导入依赖的package包/类
@Bean
SecurityScheme apiKey() {
return new ApiKey("api_key", "api_key", "header");
}
开发者ID:springfox,项目名称:springfox-demos,代码行数:5,代码来源:Application.java
注:本文中的springfox.documentation.service.ApiKey类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论