Is there a way I can access spring property placheolder directly inside groovy script file used in a mule Flow
Would something like this work? . Assuming that 'ftp.server.url' is a property in application.properties loaded by spring
<context:property-placeholder location="classpath:application.properties" />
Ex Groovy script:
def ftpClient =new FTPClient().with {
connect ${ftp.server.url}
}