eclipse的遠端除錯功能使用起來非常方便,可以極大提高查詢和修復bug的速度。除了eclipse要建立遠端除錯的profile,在伺服器端也需要相應配置。下面一一列出。
一、tomcat5.5
1、linux下
catalina.sh中,加入如下配置:
jpda_address="9917"
可以直接加在jpda_address注釋的下面。9917是jpda埠號,預設值是8000。
startup.sh中,修改啟動選項為jpda start,如下:
exec "$prgdir"/"$executable" jpda start "$@"
2、windows下
catalina.bat中,在
set jpda=jpda
下面新增:
set jpda_transport=dt_socket
set jpda_address="9917"
startup.bat中,修改啟動選項配置:
call "%executable%" start %cmd_line_args%
為call "%executable%" jpda start %cmd_line_args%
使用Eclipse遠端除錯雲伺服器上的微信公眾專案
雲伺服器系統 centos 7.3 如何在eclipse上除錯我們在雲伺服器上的專案呢,下面介紹一下步驟 1.因為root賬號不支援遠端除錯,首先需要在linux上建立乙個新的使用者,然後用該使用者裝乙個tomcat 並將專案部署上。2.該使用者的tomcat的server.xml中的埠不能改為10...
Eclipse 遠端除錯
啟動引數中需要加入下行語句 xdebug xrunjdwp transport dt socket,address 22260,server y,suspend n引數解釋見下 xdebug 啟用除錯 xrunjdwp 載入jdwp的jpda參考執行例項。transport 用於在除錯程式和 vm ...
Eclipse 遠端除錯
eclipse tomcat遠端除錯 1 tomcat的bin目錄下startup.bat修改 call executable start cmd line args 中的start 改為 jpda start 2 修改catalina.bat檔案,加上以下2行 set jpda transport...