i have a question regarding Spring Security 3.2.0 and how to modify the port-mapping from property file.
The schema for the security configuration allows only integer for the http and https property.
<port-mappings>
<port-mapping http="8090" https="9443" />
</port-mappings>
but, it would be great if we could externalize this configuration to a property file like:
<security:port-mappings>
<security:port-mapping http="${http.port}" https="${https.port}"/>
</security:port-mappings>
port.properties
---------------------
http.port=8090
https.port=9443
Anyone know how it is possible to do that??
– hakamairi Sep 18 '13 at 13:44