Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Info
tomcat plugin
tomcat plugin

I use the Sysdeo.com tomcat launcher plugin, which lets you reload specific webapp context aside from just start stop and restart tomcat from the IDE (log output goes to the eclipse console). It is available here: http://www.sysdeo.com/eclipse/tomcatPlugin.html

If you do this too, add the following as two seperate parameters to the JVM settings for starting tomcat (Window->Preferences->Tomcat->JVM Settings):

  1. -Xdebug
  2. -Xrunjdwp:transport=dt_socket,address=8000,server=y,suspend=n
  • check the box "Don't run tomcat in debug mode" since the above accomplished this (and the other way did' work for me).
  • Start tomcat using
    Code Block
    catalina.sh jpda start
    ..or using the tomcat plugin

...