Failed to connect to remote VM. Connection refused 解决方案

在运行jetty进行远程调试时,出现这个错误:Failed to connect to remote VM. Connection refused

解决方案:
1. 首先利用Jetty启动应用服务
2. 启用远程调试

如果没有启动应用服务,直接进行远程调试则出现Failed to connect to remote VM. Connection refused错误。

另外在运行jetty进行远程调试的时候,需要确保环境变量正确,具体需要配置的环境变量有:
MAVEN_OPTS: -Xdebug -Xrunjdwp:transport=dt_socket,address=1044,server=y,suspend=n

还有JAVA_HOME和MVN_HOME

你可能感兴趣的:(apache)