IDEA(mac版)中配置 springBoot 热部署

IDEA中配置 springBoot 热部署

  1. 在pom.xml配置文件中添加功能依赖

<dependency>
    <groupId>org.springframework.bootgroupId>
    <artifactId>spring-boot-devtoolsartifactId>
    <scope>runtimescope>
dependency>
  1. Idea 默认并不开启热部署,在Idea中进行配置开启,这里以mac版为例(windows亦可参照)
  • 首先,选择右上角的 IntelliJ IDEA ,点击Preferences,如下图所示:
    IDEA(mac版)中配置 springBoot 热部署_第1张图片
  • 在搜索框中搜索 compliler 或者直接找到 Compiler,点击,检查右边的Build Project automatically是否勾选,没勾选则勾选上,然后确定
    IDEA(mac版)中配置 springBoot 热部署_第2张图片
  • 快捷键调出下方页面,MAC 快捷键:Shift+option+command+/,选择Registry
    Windows 快捷键:Shift+Ctrl+Alt+/,选择Registry
    IDEA(mac版)中配置 springBoot 热部署_第3张图片
  • 检查第一项 compiler.automake.allow.when.app.running 是否勾选,要勾选上。
    此时,热部署配置完成,重启项目即可体验。
    IDEA(mac版)中配置 springBoot 热部署_第4张图片

你可能感兴趣的:(springboot)