SpringBoot项目启动报 Disconnected from the target VM 错误

SpringBoot项目启动报 Disconnected from the target VM, address: ‘127.0.0.1:57183’, transport: ‘socket’ 错误,如图:
SpringBoot项目启动报 Disconnected from the target VM 错误_第1张图片

百度了一下资料,有说是因为pom.xml缺少web包,所以加入就可以啦!即:

<dependency>
	<groupId>org.springframework.boot</groupId>
	<artifactId>spring-boot-starter-web</artifactId>
</dependency>

或者缺少tomcat包!

SpringBoot项目启动报 Disconnected from the target VM 错误_第2张图片

也有说是端口号占用 或者 xml文件包名错误,然我试了都没用,突然想起来,可能是配置的问题,即项目没用配置 VM options的参数:-Dspring.profiles.active=dev,后面我配置上去,启动就可以启动成功了。具体如下:
SpringBoot项目启动报 Disconnected from the target VM 错误_第3张图片
SpringBoot项目启动报 Disconnected from the target VM 错误_第4张图片

你可能感兴趣的:(java,SpringBoot)