• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

web.xml

 
Ranch Hand
Posts: 31
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi ,
i want to know everytime we make any changes to web.xml, should we restart tomcat, or is there any settings to be made?
thank u.
 
Ranch Hand
Posts: 365
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I do not know specifically about Tomcat. But I feel, where there is a change that results in re-loading a class, the server may need a re-start. But a chnage of something like changing the default JSP would not need a re-start.

Tina
 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi
"NO NEED TO RESTART THE SERVER"
Every web application must have web.xml.
Basically whenever there is a change in web.xml you need to restart the that particular web application.
If there is facility to restart the single web application then you can simply restart that web application BUT NO NEED TO RESTART THE SERVER.

Server needs to restart only in case of changes which are shared by all web applications such as modification/addition/deletion of common libraries (xyz.jar)

regards,
...santosh [SCJP1.4]
reply
    Bookmark Topic Watch Topic
  • New Topic