I have problems with Tomcat4.0 web server.If
i recompile the servlet class after some changes in
the code Tomcat does not show the changes. In the
Tomcat console window there is stated that servlet was
modified but in the browser the old code is still
working.I have tried to add '?'-sign with new parameter to
the end of servlet url, sometimes it works and new
recompiled servlet is shown finally.Inside server.xml
file i have added a row:<DefaultContext
reloadable="true"/> My servlets run on the \examples directory
with reloadable argument set true:<!--
Tomcat Examples Context --><Context
path="/examples" docBase="examples" debug="0"
reloadable="true">Is there any better way to make Tomcat show the
newest servlet compiled? Do i really have to restart
Tomcat a couple of times?