I want to define dynamic mvc:resource in applicationContext.xml as in code below, which should either take property through Maven or read property (in my case application/project version) from any property file
<mvc:resources mapping="/static/${project.version}/**" location="/static/"/>
is there any way to read property value in applicationContext.xml as in above statment? I need to fix this in order to bust caching if new build deployed.