来源:https://blog.youkuaiyun.com/saytime/article/details/74781701
每次修改代码都要重启服务器的痛,别说你不懂。
一、环境
- IntelliJ IDEA 2017.1.4 x64
二、SpringBoot 配置
<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>
三、IDEA 设置
- File->settings

- Register配置
Ctrl+Shift+Alt+/ => Register => 找到并勾选compiler.automake.allow.when.app.running => IDEA重启

四、测试
确认IDEA重启后,debug启动SpringBoot项目,修改第一篇文章的HelloController
@RequestMapping(value = "sayhello", method = RequestMethod.GET)
public String sayhello(){
return "Hello SpringBoot !";
}
把"Hello SpringBoot !"; == > "Hello SpringBoot 2 !";
然后直接在网页上按F5刷新就可以了。

本文详细介绍如何在IntelliJ IDEA中配置SpringBoot项目,利用spring-boot-devtools实现代码修改后的自动热部署,避免频繁重启服务器,提高开发效率。
1544

被折叠的 条评论
为什么被折叠?



