0

I am using myeclipse with tomcat installation When I have change my java class in web project(servlet class or tag class) it will not reflect in my eclipse unless and until I redeploy project in tomcat. even if I select auto publish of resources in tomcat, its not reflected.When I changed my jsp files its work fine and reflect the changes.so is there any special way to set hot deployment in myeclipse as this was works normally in eclipse.?

Jekin Kalariya
  • 3,475
  • 2
  • 20
  • 32

1 Answers1

0

you don't mention the release of MyEclipse that you're using but, in all releases, you need to start Tomcat in debug mode for this to work. Also, note that some class changes cannot be hot swapped (e.g. if you change a method signature).

Tony Weddle
  • 2,081
  • 1
  • 11
  • 15