intellij远程调试springboot项目

使用的intellij是企业版的破解版,通过几张图简单的介绍一下

  • intellij远程调试springboot项目_第1张图片

  • 第一步:点开Edit Configuration

  • intellij远程调试springboot项目_第2张图片

  • 第二步:点击+号,选择remote;

  • intellij远程调试springboot项目_第3张图片

  • 第三步:填写名称、Host、Port,填完后复制中间红框的内容,根据它的注释可知,这是在运行远程jvm时要加上的命令行参数。

  • 第四步:启动远程应用,通过java -jar -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5005 xx.jar这样运行即可。

  • 第五步:本地启动调试,在控制台可以看到intellij会去连接Host的Port。
    intellij远程调试springboot项目_第4张图片

可能遇到的问题

  • 在有些公司内部,服务器的端口管理比较严格,不会任意开放,所以远程调试时会连不上服务器。

你可能感兴趣的:(工具,debug,springboot,intellij)