tomcat+eclipse 遠端debug
1 在Linux環境上部署host專案,解壓war包
jar -xvf smartBus-host-v1.war
2 配置tomact startup.sh 檔案 加入:
##############remoteDebugStart###########################i
declare -xCATALINA_OPTS="-server -Xdebug -Xnoagent -Djava.compiler=NONE-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=7000"
###############remoteDebugEnd############################
3 啟動host專案
ps -ef|grep java
./startup.sh 啟動
4 配置本地eclipse(1配置地址和埠號 2引入專案包)
注:
debug:
vim startup.sh
ps-ef|grep java
kill -9 25190
./bin/startup.sh
//啟動debug監聽埠
nestat -an |grep 6000
//檢視監聽埠是否開啟
netstat -an |grep 6000