一、操作步骤
1、command + SHIFT + A --> 查找make project automatically(图1) --> 双击打开勾选(图2)
2、command + SHIFT + A --> 查找Registry(图3) --> 找到并勾选compiler.automake.allow.when.app.running(图4)
3、修改pom.xml添加依赖(图5),重启idea即可
二、详细步骤
图1
图2
图3
图4
图5
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<fork>true</fork>
</configuration>
</plugin>
</plugins>
</build>
Spring Boot与Spring Cloud学习使用可参看笔者博客
①Spring Cloud入门教程之服务注册与发现Eureka
②Spring Cloud入门教程之服务消费者 Ribbon
⑥Spring Cloud入门教程之分布式配置中心 Spring Cloud Config