How can I pass a system property to jetty startup something like -DSERVER="localhost" if it is in start.config what is the exact syntax ? and will it be available to my deployed war with this System.getProperty("SERVER") ?

thnx in advance

link|improve this question

Why? I would not want Jetty to be dependent on such a thing. Seems wrong to me. – duffymo Jul 7 '10 at 1:20
Are you using embedded Jetty? – Syntax Jul 7 '10 at 2:52
I do not want to run to config files as it will be included in the war file ..it means that I should re-compile or at least re archive the war file for every case . I do not use embedded Jetty . – Montaro Jul 7 '10 at 3:24
feedback

2 Answers

up vote 1 down vote accepted

Edit the /etc/jetty/start.config and add SERVER="127.0.0.1" in the start if the file.

link|improve this answer
feedback

Have you tried to put something like this in start.ini?

--exec
-DSERVER="localhost"

(perhaps before OPTIONS=, but I'm not sure that's necessary.)

The comments in start.ini say:

If the arguements in this file include JVM arguments (eg -Xmx512m) or JVM System properties (eg com.sun.???), then these will not take affect unless the --exec parameter is included [...]

link|improve this answer
Thx Bruno but I do not have start.ini file any where Hint I use jetty 6 /Ubuntu 10.04 – Montaro Jul 7 '10 at 2:24
Sorry, I was assuming Jetty 7. – Bruno Jul 7 '10 at 11:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.