org.springframework.core.io.support.PropertiesLoaderSupport Java Examples
The following examples show how to use
org.springframework.core.io.support.PropertiesLoaderSupport.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ConfigurationUtil.java From A.CTable-Frame with Apache License 2.0 | 5 votes |
private void initProperties() { properties = new Properties(); try { String[] postProcessorNames = applicationContext.getBeanNamesForType(BeanFactoryPostProcessor.class, true, true); for (String ppName : postProcessorNames) { BeanFactoryPostProcessor beanProcessor = applicationContext.getBean(ppName, BeanFactoryPostProcessor.class); if (beanProcessor instanceof PropertyResourceConfigurer) { PropertyResourceConfigurer propertyResourceConfigurer = (PropertyResourceConfigurer) beanProcessor; Method mergeProperties = PropertiesLoaderSupport.class.getDeclaredMethod("mergeProperties"); mergeProperties.setAccessible(true); Properties props = (Properties) mergeProperties.invoke(propertyResourceConfigurer); // get the method convertProperties // in class PropertyResourceConfigurer Method convertProperties = PropertyResourceConfigurer.class.getDeclaredMethod("convertProperties", Properties.class); // convert properties convertProperties.setAccessible(true); convertProperties.invoke(propertyResourceConfigurer, props); properties.putAll(props); } } } catch (Exception e) { throw new RuntimeException(e); } }