本文整理匯總了Java中org.apache.commons.configuration.PropertiesConfiguration.setURL方法的典型用法代碼示例。如果您正苦於以下問題:Java PropertiesConfiguration.setURL方法的具體用法?Java PropertiesConfiguration.setURL怎麽用?Java PropertiesConfiguration.setURL使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.apache.commons.configuration.PropertiesConfiguration
的用法示例。
在下文中一共展示了PropertiesConfiguration.setURL方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: getConfiguration
import org.apache.commons.configuration.PropertiesConfiguration; //導入方法依賴的package包/類
private Configuration getConfiguration(String name) {
Configuration configuration = null;
URL url = Thread.currentThread().getContextClassLoader().getResource(name);
if (url != null) {
PropertiesConfiguration pc = new PropertiesConfiguration();
pc.setURL(url);
// Set reloading strategy
String dynamicReload = ApplicationProperties.getProperty("tmtbl.properties.dynamic_reload", null);
if (dynamicReload!=null && dynamicReload.equalsIgnoreCase("true")) {
long refreshDelay = Constants.getPositiveInteger(
ApplicationProperties.getProperty("tmtbl.properties.dynamic_reload_interval"), 15000 );
FileChangedReloadingStrategy strategy = new FileChangedReloadingStrategy();
strategy.setRefreshDelay(refreshDelay);
pc.setReloadingStrategy(strategy);
pc.addConfigurationListener(new MessageResourcesCfgListener(pc.getBasePath()));
}
try {
pc.load();
configuration = pc;
} catch (ConfigurationException e) {
Debug.error("Message Resources configuration exception: " + e.getMessage());
}
}
return configuration;
}