<!--spring-boot 开启热部署-->
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-devtools</artifactId>
			<optional>true</optional>
		</dependency>

1 导入依赖

2 在IDEA中 按Ctrl+F9 就会自动热部署

3 在Eclipse中 按Ctrl+s  就可以实现热部署

11-06 22:59