本文整理汇总了Java中org.springframework.cloud.config.client.ConfigServicePropertySourceLocator类的典型用法代码示例。如果您正苦于以下问题:Java ConfigServicePropertySourceLocator类的具体用法?Java ConfigServicePropertySourceLocator怎么用?Java ConfigServicePropertySourceLocator使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
ConfigServicePropertySourceLocator类属于org.springframework.cloud.config.client包,在下文中一共展示了ConfigServicePropertySourceLocator类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: configClientOAuth2Configurator
import org.springframework.cloud.config.client.ConfigServicePropertySourceLocator; //导入依赖的package包/类
@Bean
@Primary
@ConditionalOnProperty(value = "spring.cloud.config.enabled", matchIfMissing = true)
protected ConfigClientOAuth2Configurer configClientOAuth2Configurator(ConfigServicePropertySourceLocator locator,
ConfigClientOAuth2ResourceDetails configClientOAuth2ResourceDetails) {
return new ConfigClientOAuth2Configurer(locator, configClientOAuth2ResourceDetails);
}
开发者ID:marcosbarbero,项目名称:spring-cloud-config-client-oauth2,代码行数:8,代码来源:ConfigClientOAuth2BootstrapConfiguration.java
示例2: isHasCloudConfigLocator
import org.springframework.cloud.config.client.ConfigServicePropertySourceLocator; //导入依赖的package包/类
/**
* 是否启用了Spring Cloud Config获取配置资源
*
* @param propertySourceLocators
* @return
*/
private boolean isHasCloudConfigLocator(List<PropertySourceLocator> propertySourceLocators) {
for (PropertySourceLocator sourceLocator : propertySourceLocators) {
if (sourceLocator instanceof ConfigServicePropertySourceLocator) {
return true;
}
}
return false;
}
示例3: ConfigClientOAuth2Configurer
import org.springframework.cloud.config.client.ConfigServicePropertySourceLocator; //导入依赖的package包/类
public ConfigClientOAuth2Configurer(ConfigServicePropertySourceLocator locator,
ConfigClientOAuth2ResourceDetails configClientOAuth2ResourceDetails) {
this.locator = locator;
this.configClientOAuth2ResourceDetails = configClientOAuth2ResourceDetails;
}
开发者ID:marcosbarbero,项目名称:spring-cloud-config-client-oauth2,代码行数:6,代码来源:ConfigClientOAuth2BootstrapConfiguration.java
示例4: configClientEnabled
import org.springframework.cloud.config.client.ConfigServicePropertySourceLocator; //导入依赖的package包/类
@Test
public void configClientEnabled() throws Exception {
assertEquals(1, BeanFactoryUtils.beanNamesForTypeIncludingAncestors(this.context,
ConfigServicePropertySourceLocator.class).length);
}
示例5: configClientDisabled
import org.springframework.cloud.config.client.ConfigServicePropertySourceLocator; //导入依赖的package包/类
@Test
public void configClientDisabled() throws Exception {
assertEquals(0, BeanFactoryUtils.beanNamesForTypeIncludingAncestors(this.context,
ConfigServicePropertySourceLocator.class).length);
}