菜单 -> Run -> Edit Configurations…
添加 -> Remote
配置
启动远程项目
正常启动命令如下:
java -jar ***.jar
开启远程调试:
java -jar -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=7015 **.jar
开启远程调试,后台启动:
nohup java -jar -Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=7015 xxxx.jar --server.port=8080 > info.log 2>&1 &
其中 -agentlib:jdwp=transport=dt_socket