Spring boot 2.1.3 update from 2.0.6 causes an BeanDefinitionParsingException for util:map
I have workaround for this problem. Basically moved the map from applicationContext.xml to application properties and retrieved using @Value like below.
app.properties
lookup={'60':'Last 1 hour','480':'Last 8 hours','1440':'Last 24 hours','2880':'Last 2 days'}
ApplicationProperties.java
@Value("#{${lookup}}")
private Map<String,String> lookupTimeinterval;