java远程调试

本文档实现调用远程接口,远程服务调用本地代码调试。(保持本地代码和远程代码一致)

远程服务器配置
在远程服务器启动参数中添加日下配置,31799为远程调试端口

 -Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=31799

idea配置
在run/Debug configuration中添加remote配置

image.png

保存启动,控制台打印如下信息

Connected to the target VM, address: '172.17.210.119:31799', transport: 'socket'

你可能感兴趣的:(java远程调试)