tomcat 启动时加载项目


启动加载项目配置
在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端口

猜你喜欢

转载自yubolg.iteye.com/blog/1544904