tomcat与ANT远程调试

tomcat与ANT远程调试

tomcat要远程调试,其实比较简单,就是在tomcat/bin/下面加入了一个文件

setenv.bat

文件内容如下:

SETCATALINA_OPTS=-server-Xdebug-Xnoagent-Djava.compiler=NONE-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=8000

然后点击startup.bat就可以了。

但是最近用的appfuse是用ant来启动tomcat,于是加入了这两个ant任务:

<!--========================================-->

<!--addbyLuohuastartaremotedebug-->

<!--========================================-->

<targetname="tomcat.debug"description="InstallapplicationinLocalTomcat">

<echomessage="startdebugtomcat..."/>

<execexecutable="${tomcat.home}/bin/startup.bat"os="WindowsXP"spawn="true"vmlauncher="false">

<argline="/cstart${tomcat.home}/bin/startup.bat"/>

</exec>

</target>

<!--========================================-->

<!--addbyLuohuastoparemotedebug-->

<!--========================================-->

<targetname="tomcat.stop"description="InstallapplicationinLocalTomcat">

<echomessage="stopdebugtomcat..."/>

<execexecutable="cmd"os="WindowsXP"vmlauncher="false">

<argline="/cstart${tomcat.home}/bin/shutdown.bat"/>

</exec>

</target>

ant

相关推荐