tomcate配置远程调试及配置启动时加载项目

启动加载项目配置

在server.xml中添加如下:

<Context path="/recon" reloadable="true" docBase="D:\workspace\seashell-recon\seashell-appcontroller\src\main\webapp" workDir="D:\workspace\seashell-recon\seashell-appcontroller\src\main\webapp\work" />

配置远程调试:

在bin/catalina/catalina.bat文件中添加:

set CATALINA_OPTS=-server -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=8787

然后再eclipse中远程调试时使用以上8787端口

你可能感兴趣的:(eclipse,xml,socket)