springboot idea 代码更改自己编译设置

第一步:在pom.xml文件中添加springboot 编译依赖

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>
第二步:idea 打开setting 设置自己编译功能

第三步:shift + ctrl + alt + /  打开注册页面

结束。

原文地址:https://www.cnblogs.com/prettrywork/p/10761841.html