远程debug
- JAR启动参数中添加以下配置
2. jdk 1.3 之前:
-Xnoagent -Djava.compiler=NONE -Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=<port服务器没有被占用的端口>
3. jdk 1.4
-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=<port服务器没有被占用的端口>
4. jdk 1.5 以后
-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=<port服务器没有被占用的端口>
- IDEA=>Edit Configures=>Remote的配置如下
在 Use module classpath 中选中服务
3. 启动DEBUG
- Console 输出以下内容,就可以debug了
Connected to the target VM, address: ‘192.168.0.1:40001’, transport: ‘socket’