本文整理匯總了Java中org.springframework.core.env.MutablePropertySources.addAfter方法的典型用法代碼示例。如果您正苦於以下問題:Java MutablePropertySources.addAfter方法的具體用法?Java MutablePropertySources.addAfter怎麽用?Java MutablePropertySources.addAfter使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.springframework.core.env.MutablePropertySources
的用法示例。
在下文中一共展示了MutablePropertySources.addAfter方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: addKeyVaultPropertySource
import org.springframework.core.env.MutablePropertySources; //導入方法依賴的package包/類
public void addKeyVaultPropertySource() {
final String clientId = getProperty(environment, Constants.AZURE_CLIENTID);
final String clientKey = getProperty(environment, Constants.AZURE_CLIENTKEY);
final String vaultUri = getProperty(environment, Constants.AZURE_KEYVAULT_VAULT_URI);
final long timeAcquiringTimeoutInSeconds = environment.getProperty(
Constants.AZURE_TOKEN_ACQUIRE_TIMEOUT_IN_SECONDS, Long.class, 60L);
final KeyVaultClient kvClient = new KeyVaultClient(
new AzureKeyVaultCredential(clientId, clientKey, timeAcquiringTimeoutInSeconds));
try {
final MutablePropertySources sources = environment.getPropertySources();
final KeyVaultOperation kvOperation = new KeyVaultOperation(kvClient, vaultUri);
if (sources.contains(StandardEnvironment.SYSTEM_ENVIRONMENT_PROPERTY_SOURCE_NAME)) {
sources.addAfter(StandardEnvironment.SYSTEM_ENVIRONMENT_PROPERTY_SOURCE_NAME,
new KeyVaultPropertySource(kvOperation));
} else {
sources.addFirst(new KeyVaultPropertySource(kvOperation));
}
} catch (Exception ex) {
throw new IllegalStateException("Failed to configure KeyVault property source", ex);
}
}
示例2: finishAndRelocate
import org.springframework.core.env.MutablePropertySources; //導入方法依賴的package包/類
public static void finishAndRelocate(MutablePropertySources propertySources) {
String name = APPLICATION_CONFIGURATION_PROPERTY_SOURCE_NAME;
ConfigurationPropertySources removed = (ConfigurationPropertySources) propertySources
.get(name);
if (removed != null) {
for (PropertySource<?> propertySource : removed.sources) {
if (propertySource instanceof EnumerableCompositePropertySource) {
EnumerableCompositePropertySource composite = (EnumerableCompositePropertySource) propertySource;
for (PropertySource<?> nested : composite.getSource()) {
propertySources.addAfter(name, nested);
name = nested.getName();
}
}
else {
propertySources.addAfter(name, propertySource);
}
}
propertySources.remove(APPLICATION_CONFIGURATION_PROPERTY_SOURCE_NAME);
}
}
開發者ID:vikrammane23,項目名稱:https-github.com-g0t4-jenkins2-course-spring-boot,代碼行數:21,代碼來源:ConfigFileApplicationListener.java
示例3: postProcessEnvironment
import org.springframework.core.env.MutablePropertySources; //導入方法依賴的package包/類
@Override
public void postProcessEnvironment(ConfigurableEnvironment environment,
SpringApplication application) {
if (CloudPlatform.CLOUD_FOUNDRY.isActive(environment)) {
Properties properties = new Properties();
addWithPrefix(properties, getPropertiesFromApplication(environment),
"vcap.application.");
addWithPrefix(properties, getPropertiesFromServices(environment),
"vcap.services.");
MutablePropertySources propertySources = environment.getPropertySources();
if (propertySources.contains(
CommandLinePropertySource.COMMAND_LINE_PROPERTY_SOURCE_NAME)) {
propertySources.addAfter(
CommandLinePropertySource.COMMAND_LINE_PROPERTY_SOURCE_NAME,
new PropertiesPropertySource("vcap", properties));
}
else {
propertySources
.addFirst(new PropertiesPropertySource("vcap", properties));
}
}
}
開發者ID:vikrammane23,項目名稱:https-github.com-g0t4-jenkins2-course-spring-boot,代碼行數:23,代碼來源:CloudFoundryVcapEnvironmentPostProcessor.java