我最近从eclipse切换到IntelliJ。 Eclipse的调试启动程序用于在保存类时立即重新加载应用程序。 IntelliJ需要超过10秒来重新加载更改的类,这可能不是很多,但它很烦人,因为我经常使用它。
如何使IntelliJ重新加载更改类更快?
要重新加载已更改的类
IntelliJ不会在更改java文件和重建后编译代码
compiler.automake.allow.when.app.running
compiler.automake.trigger.delay=500
pom.xml
添加devtool:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>