概述
在编写代码的途中,基本上没写完一小部分代码都会进行调试,每次都要重启spring,很是麻烦.
所以spring提供了热部署的功能,即代码保存之后立即部署. 这样可以大大提高效率~
配置项
引入devtools.
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <scope>runtime</scope> <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>
- 在设置中勾选 Build project automatically
- 按下Ctrl + Shift + Alt + / 进入 'Registry'勾选 compiler.automake.allow.when.app.running
这样就完成了. 当代码按下Ctrl + S后,项目就会自动更新~