[IDE][IDEA小技巧系列]Intellij IDEA远程调试

配置 idea 


Edit Configurations 

从左侧添加一个Remote



添加完毕后在右侧的设置位


Command Line arguments for running remote JVM需要进行设置

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

这一步也可以在tomcat的\bin\setenv.sh中加入 属性名为CATALINA_OPTS=


设置好Host跟Port  Host: 远程服务器的IP地址,8000:远程调试的端口

例 localhost:5005


完成后即可开始远程调试.

在代码中打好断点, Debug模式启动remote



走起


你可能感兴趣的:(IDE)