自从springboot 1.3之后,springboot提供了一个spring-boot-dev-tools工具,可以实现项目更改代码后重新加载,这样就能快速的查看效果。闲言少叙,为了达到这种效果,需要配置两方面的内容。
intelliJ Idea方面
1 开启自动make功能
(1)settings-build-compiler
老一点的intelliJ 是make project automatically
我的新版本的是build project automatically
(2)ctrl+shift+a 找到registry 勾选compiler.automake.allow.when.app.running,重启idea
2 springboot项目方面
(1)pom中添加spring-boot-dev-tools依赖,注意加上optional=true
(2)在spring-boot-maven-plugin中加上fork=true配置
这样就可以了。此文参考了链接