I'm having a problem with my Spring Boot application ignoring my ignoreUnresolvablePlaceHolders set to true in my config.xml file.
I have these options explicitly set:
<property name="ignoreUnresolvablePlaceholders" value="true" />
<!-- <property name="localOverride" value="false" /> -->
<property name="ignoreResourceNotFound" value="true" />
It works fine in a Junit but when I run my app as a Spring Boot it throws a Caused by: java.lang.IllegalArgumentException: Could not resolve placeholder on startup.
Everything started to fail when I added Spring Profiles like this:
<beans profile="default,dev">
Any help would be very much appreciated...