I work with Spring Batch and want to make a dynamic placeholder, which will take a value from properties file depending on input param.
So I have and I can access:
#{jobParameters['fileExtension']}
${file.ext.csv}
and I want to make something like: ${file.ext.#{jobParameters['fileExtension']}
Any ideas how to implement this? Thank you for any help!