I have a web application that contains the following types of settings in web.xml:
<context-param>
<param-name>CONFIG_FILE</param-name>
<param-value>${foo.home}/conf/ext/ConfigAll.xml</param-value>
</context-param>
How do you set the “foo.home” system property when using the glassfish server plugin?
I’ve tried setting it as jvm properties in the server config, but the app doesn’t see the value correctly.
We’re using the glassfish 2.x server from MyEclipse on linux.