Skip to content
Snippets Groups Projects
Commit 124dcb7b authored by felmer's avatar felmer
Browse files

SSDM-3157: try to fix the bug: core-plugin disabling master data registration doesn't work

SVN: 35654
parent e8945133
No related branches found
No related tags found
No related merge requests found
...@@ -77,7 +77,6 @@ public class ExposablePropertyPlaceholderConfigurer extends PropertyPlaceholderC ...@@ -77,7 +77,6 @@ public class ExposablePropertyPlaceholderConfigurer extends PropertyPlaceholderC
final ConfigurableListableBeanFactory beanFactoryToProcess, final Properties props) final ConfigurableListableBeanFactory beanFactoryToProcess, final Properties props)
throws BeansException throws BeansException
{ {
super.processProperties(beanFactoryToProcess, props);
resolvedProps = new Properties(); resolvedProps = new Properties();
for (final Object key : props.keySet()) for (final Object key : props.keySet())
{ {
...@@ -85,6 +84,7 @@ public class ExposablePropertyPlaceholderConfigurer extends PropertyPlaceholderC ...@@ -85,6 +84,7 @@ public class ExposablePropertyPlaceholderConfigurer extends PropertyPlaceholderC
resolvedProps.setProperty(keyStr, getResolvedProperty(props, keyStr)); resolvedProps.setProperty(keyStr, getResolvedProperty(props, keyStr));
} }
injectPropertiesInto(resolvedProps); injectPropertiesInto(resolvedProps);
super.processProperties(beanFactoryToProcess, resolvedProps);
} }
protected void injectPropertiesInto(Properties properties) protected void injectPropertiesInto(Properties properties)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment