我创建了一个像alias play=/Users/bobdylan/Documents/play/play
创建新应用并尝试使用play run
运行后,我一直这样做:
Debugger failed to attach: handshake failed - received >GET / HTTP/1.1< - excepted >JDWP-Handshake<
Debugger failed to attach: handshake failed - received >GET / HTTP/1.1< - excepted >JDWP-Handshake<
知道可能出现什么问题吗?
答案 0 :(得分:3)
这不应该阻止您的应用程序启动,只有调试器才可以加入。它还应该显示一个异常堆栈跟踪,它可以帮助我们指出问题(如果它在你的情况下显示,请附上它)。
要解决此问题,您可以查看:
答案 1 :(得分:0)
JPDA_PORT在播放脚本中设置,因此您可以在安装中编辑播放脚本,也可以在运行播放前将其导出
export JPDA_PORT=8888
在播放脚本中更改
if test "$1" = "debug"; then
JPDA_PORT="9009"
shift
fi