当前位置:   article > 正文

Disconnected from the target VM, address: '127.0.0.1:56577', transport: 'socket'

disconnected from the target v

Disconnected from the target VM, address: '127.0.0.1:56577', transport: 'socket'

Disconnected from the target VM=与目标虚拟机断开连接。

PS:通俗点讲就是:你的端口已经被其他程序占用,无法连接目标虚拟机。

在cmd中输入命令:netstat -ano,查看所有端口的占用情况

去任务管理器中查找PID为10652

IDEA 与 Maven 的版本不兼容造成的

 

启动运行时:

Connected to the target VM, address: '127.0.0.1:56577', transport: 'socket'

maven配置是:

<dependency>
<groupId>org.thymeleaf</groupId>
<artifactId>thymeleaf</artifactId>
<version>3.0.11.RELEASE</version>
</dependency>


而我用的是idea2019.1占用了端口

所以改一下版本
<!--模板引擎thymeleaf-->
<dependency>
<groupId>org.thymeleaf</groupId>
<artifactId>thymeleaf</artifactId>
<version>2.1.4</version>
</dependency>

启动运行时端口就改了
Connected to the target VM, address: '127.0.0.1:60206', transport: 'socket'

就没有报错了,完美解决!

 

转载于:https://www.cnblogs.com/javawxid/p/11139047.html

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/260093?site
推荐阅读
相关标签
  

闽ICP备14008679号