• 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
  • Ron McLeod
  • Liutauras Vilda
  • Paul Clapham
  • paul wheaton
Sheriffs:
  • Tim Cooke
  • Devaka Cooray
  • Rob Spoor
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Tim Moores
  • Carey Brown
  • Mikalai Zaikin
Bartenders:

Hot deployment in tomcat

 
Ranch Hand
Posts: 42
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi ,

I have some doubt regarding

<Context path="/mysite1" docBase="webapps/mysite1"
debug="5" reloadable="true" crossContext="false">
</Context>
If I specify the above tag in tomcats server.xml
will it make my application (mysite1) eligible for hot deployment .
Or is it version specific .
 
Greenhorn
Posts: 10
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Yes you are right.
By using this tag in server.xml you are eligible for hot deployment but it is not version specific.
The main reason to use this tag is when we are developing a web application we may have to change/modify in our source code. So this needs to be complied and we have to stop the tomcat again restart.
So it seems like time taking and boaring. So we are using this context tag to dynamically take the modified class file, no need to stop the tomcat and restart.
 
There are 10 kinds of people in this world. Those that understand binary get this tiny ad:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic