me gustaría saber si hay posibilidad de establecer un atributo en web.xml
mediante el uso de archivo de propiedades. Por ejemplo, el web.xml:Cómo establecer el valor en web.xml utilizando archivo de propiedades
<context-param>
<param-name>Map.MyJNDI</param-name>
<param-value>java:comp/env/jdbc/${my.computer}</param-value>
</context-param>
y application.properties
sería:
# My computer's name
my.computer=eniac
Gracias por responder. Tomas
comprobar estos: - http://stackoverflow.com/questions/15380817/properties-file-as-init-param-in-web-xml - http://stackoverflow.com/questions/12099008/how-to-include-values-from-properties-file-into-web-xml – Chepech