Tomcat

Hi All~~

I use Tomcat to run my servlets,and the server works fine.But when I made some modification to a servlet,and I compiled it successfully,but the result did not change.And when I restart the server,the changes appeared.

I don't know if the server wasn't be configured correctly.

Do you know why this happens and please tell me how to resolve it.

Thanx very much!!

[410 byte] By [metalcure] at [2007-9-26 3:46:10]
# 1

In Tomcat configuration file %TOMCAT_HOME%/conf/server.xml specify reloadable="true" for your application's context...

<Context path="/examples"

docBase="webapps/examples"

crossContext="false"

debug="0"

reloadable="true" >

</Context>

neville_sequeira at 2007-6-29 12:27:38 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...