當前位置: 首頁>>代碼示例>>Java>>正文


Java PropertySource.getName方法代碼示例

本文整理匯總了Java中org.springframework.core.env.PropertySource.getName方法的典型用法代碼示例。如果您正苦於以下問題:Java PropertySource.getName方法的具體用法?Java PropertySource.getName怎麽用?Java PropertySource.getName使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.springframework.core.env.PropertySource的用法示例。


在下文中一共展示了PropertySource.getName方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: finishAndRelocate

import org.springframework.core.env.PropertySource; //導入方法依賴的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

示例2: addPropertySource

import org.springframework.core.env.PropertySource; //導入方法依賴的package包/類
private void addPropertySource(PropertySource<?> propertySource) {
	String name = propertySource.getName();
	MutablePropertySources propertySources = ((ConfigurableEnvironment) this.environment).getPropertySources();
	if (propertySources.contains(name) && this.propertySourceNames.contains(name)) {
		// We've already added a version, we need to extend it
		PropertySource<?> existing = propertySources.get(name);
		PropertySource<?> newSource = (propertySource instanceof ResourcePropertySource ?
				((ResourcePropertySource) propertySource).withResourceName() : propertySource);
		if (existing instanceof CompositePropertySource) {
			((CompositePropertySource) existing).addFirstPropertySource(newSource);
		}
		else {
			if (existing instanceof ResourcePropertySource) {
				existing = ((ResourcePropertySource) existing).withResourceName();
			}
			CompositePropertySource composite = new CompositePropertySource(name);
			composite.addPropertySource(newSource);
			composite.addPropertySource(existing);
			propertySources.replace(name, composite);
		}
	}
	else {
		if (this.propertySourceNames.isEmpty()) {
			propertySources.addLast(propertySource);
		}
		else {
			String firstProcessed = this.propertySourceNames.get(this.propertySourceNames.size() - 1);
			propertySources.addBefore(firstProcessed, propertySource);
		}
	}
	this.propertySourceNames.add(name);
}
 
開發者ID:txazo,項目名稱:spring,代碼行數:33,代碼來源:ConfigurationClassParser.java

示例3: generateVersionPropertySourceName

import org.springframework.core.env.PropertySource; //導入方法依賴的package包/類
/**
 * 生成帶版本號的屬性源的名稱
 *
 * @param version
 * @param propertySource
 * @return
 */
private static String generateVersionPropertySourceName(long version, PropertySource<?> propertySource) {
    return propertySource.getName() + "-v" + version;
}
 
開發者ID:zouzhirong,項目名稱:configx,代碼行數:11,代碼來源:VersionPropertySource.java


注:本文中的org.springframework.core.env.PropertySource.getName方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。