This content has been marked as final. 
    
Show                 1 reply
    
- 
        1. Re: Pass parameters to jvm?jimm Apr 13, 2005 12:45 PM (in response to hariharanpm)You can add a line like this to your run.conf 
 JAVA_OPTS="$JAVA_OPTS -Dmyparam1=myvalue1 -Dmyparam2=myvalue2"
 OR
 you can add parameters to [server config]/deploy/properties-service.xml
 either way in your application code you would retrieve the value via:System.getProperty("myparam1");
 
    