在项目开发过程中,每次需要修改和调试时都需要重启项目,这浪费了很多时间。以下是我整理的两种常用方法
修改启动配置方式(主要针对debug模式下)
点击启动配置=》edit configrations…
configration下面修改Updateclasses and resources
on ‘update‘ action:当用户主动执行更新的时候更新 快捷键:Ctrl + F9
on frame deactication:在编辑窗口失去焦点的时候更新
说明
当开发者将 spring-boot-devtools 引入项目后,只要 classpath 路径下发生变化,项目就会自动重启,这极大地提高了项目的开发速度。如果开发者使用 Eclipse ,那么在修改完代码并保存之后,项目将自动编译井触发重启,而开发者如果使用 IntelliJ IDEA 默认情况下,需要开发者手动编译才会触发重启。手动编译时,单击 Build -> Build Project 菜单或者按 Ctrl+F9 快捷键进行编译,编译成功后就会触发项目重启。当然,使用 IntelliJ IDEA 开发者也可以配置项目自动编译,配置步骤:
File=》Settings=》Build,Execution,Deployment=》 Compiler=》勾选Build project automeatically
Ctrl+shifter+alt+/ =》Registry=》勾选compiler.automake.allow.parallel
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <optional>true</optional> </dependency>
#热部署默认会重启 spring.devtools.restart.enabled=true #添加那个目录的文件需要restart spring.devtools.restart.additional-paths=src/main/java #排除那个目录的文件不需要restart spring.devtools.restart.exclude=static/**,public/**
以上是Idea springboot springCloud热加载热调试的常用方法有哪些的详细内容。更多信息请关注PHP中文网其他相关文章!