Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

changing web.xaml after deployment

Status
Not open for further replies.

sheed

Programmer
Jun 14, 2005
38
0
0
US
I have J2EE application. I am using
Code:
<init-param> 
<param-name>first</param-name>
<param-value>value is</param-value>
</init-param>
in my web.xml file. Now if I deploy the application on the app. server can I change the value of
Code:
<param-value>value is</param-value>

without redeploying the application again.
Thanks
 
You don't state which J2EE server you are using ... each server's behaviour is different.

--------------------------------------------------
Free Java/J2EE Database Connection Pooling Software
 
Oracle Application Server

is there a way I give or provide some properties file but changing the values after deployment I don't have to redeploy or restart the server. I thought if can put in web.xml file it should work or is there any other way.

Thanks
 
I do not believe that OAS (OC4J) supports dynamic reloading of webapp descriptors.

--------------------------------------------------
Free Java/J2EE Database Connection Pooling Software
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top