The global property is not resolved from the properties file, and therefore mmc is not deployed. Can anyone understand what might be wrong?
<context:property-placeholder location="airports.properties" />
<global-property name="airportslist" value="${airportslist}" />
Getting the following exception -
com.mulesoft.mmc.agent.v3.dto.DeploymentException: Unexpected exception parsing XML document from URL [file: /arprt/mule-esb-ee/mule-enterprise-standalone-3.3.0/apps/myapp-1.0.0 -SNAPSHOT / myapp-config.xml]; nested exception is java.lang.IllegalArgumentException: Could not resolve placeholder 'airportslist' (org.mule.api.lifecycle.InitialisationException) (org.mule.api.config.ConfigurationException)
at com.mulesoft.mmc.agent.service.impl.ApplicationServiceImpl.deploy (ApplicationServiceImpl.java:245)
at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
airport.properties contains the above property:
airportslist={'SFO', 'YYZ', 'DFW'}
source
share