I have 2 xml config files with the same bean name but with different implementation.
How to swith it by property value?
I want something like this:
config.properties
------------------
with_implementation=impl1
applicationConfig
--------------------
<include resource="application-${with_implementation}.xml"/>
Is it possible?
Perhaps is there another way to do that?


Reply With Quote