(found response by myself)
Response is :
Code:
[...]
solutions.outputDirectory=${java.io.tmpdir}
[...]
BUT, if any placeholderPrefix has been defined on PropertyPlaceholderConfigurer :
e.g
Code:
<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="placeholderPrefix" value="service{" />
<property name="placeholderSuffix" value="}" />
<property name="locations">
<list>
<value>classpath:properties/service.properties</value>
</list>
</property>
</bean>
... it MUST be :
Code:
[...]
solutions.outputDirectory=service{java.io.tmpdir}
[...]
:-)