idea远程试调jar、远程试调war

目的:测试运行时与ide开发时是否一致。

配置jar

Maven中添加

<packaging>jar</packaging>

将其打包为jar。

image-1710728603511

设置运行入口main

image-1710728649129

image-1710728737047

image-1710728762308

编译jar

image-1710728796219

image-1710728815970

看到jar输出

image-1710728845736

配置试调

image-1710728880214

添加jar运行

image-1710728905293

image-1710728953398

本地试调

先在源码中打好断点试调
image-1710729008357

debug运行它
image-1710729027831

可见进入了断点:
image-1710729063422

远程试调

idea添加 Remote JVM Debug

image-1710927158188

填写好主机地址和试调的端口(Linux上的5005端口必须是开放的

image-1710927221318

复制好启动参数:

-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5005

将jar传到Linux上,运行jar:

java -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5005 -jar web-ssh.jar

image-1710927351114

idea运行远程试调:

image-1710927374512

触发远程断点:

image-1710927493040

至此完成