在intellij中调试(重新加载更改的类)
我最近从eclipse切换到intellij。 在eclipse中使用调试启动器时,应用程序在保存后立即重新加载更改的类。 虽然在intellij中,我发现在重新加载更改后的类需要大于10秒的时间,这可能不是很多,但它真的很烦人,因为我经常使用它,有没有其他方法可以实现这一点
重新加载更改的类
1.执行以下操作之一: - 在主菜单上,选择运行| 重新加载更改的类。 - 在主菜单中,选择Build | 编译“class_name”以在调试期间重新编译更改的类。
2.在Reload Changed Classes对话框中,确认重新加载。 结果显示在消息工具窗口中。
详细解释请参考此链接。
InteliJ在java文件更改和重建之后不会重新编译代码
1.Project > Setting>Build,Execution,Deployment>Compiler>check build project automatically
2.CTRL+SHIFT+A find registry --Check
compiler.automake.allow.when.app.running
compiler.automake.trigger.delay=500---According to ur requirement
3.Add devtool in pom.xml`
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>
4.Build ,If found any probelm while building ,saying some jar in not in class path.Just delete the corrupted jar
and re-build the project angain after sync with maven lib
链接地址: http://www.djcxy.com/p/88003.html