赞
踩
上传jar包至linux服务器
略
启动jar包,并加入debug参数
debug参数,指定监听端口,注意防火墙放行端口
ip地址0.0.0.0是允许所有ip访问,需注意安全
-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=0.0.0.0:5555
完整启动命令:
# nohup 后台运行
# --server.port 指定端口号51101
# >xxx.log 2>&1 打印日志到xxx.log
nohup java -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=0.0.0.0:5555 -jar xxx.jar --server.port=51101 >xxx.log 2>&1 &
idea选择edit configuration
选择Remote JVM Debug,填写host,port参数,其他默认即可
出现以下即为连接成功
可以进行愉快的debug了
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。