IDEA 2020.01版 springboot 热部署

IDEA 2020.01版 springboot 热部署

  • 1、先设置pom.xml文件,加入依赖
    • 1.1、在dependencies标签里加入
    • 1.2、在plugins标签下加入
  • 2、设置idea
    • 2.1、file->settings->compiler,勾选如图选项
    • 2.2、press ctrl+shift+Alt+/,选择Registry
    • 2.3、选择下图选项
    • 3、重启idea生效

1、先设置pom.xml文件,加入依赖

1.1、在dependencies标签里加入

<dependency>
    <groupId>org.springframework.bootgroupId>
    <artifactId>spring-boot-devtoolsartifactId>
    <scope>runtimescope>
    <optional>trueoptional>
dependency>

1.2、在plugins标签下加入

<plugin>
  <groupId>org.springframework.bootgroupId>
  <artifactId>spring-boot-maven-pluginartifactId>
  <configuration>
    <fork>truefork>
    <addResources>trueaddResources>
  configuration>
plugin>

2、设置idea

2.1、file->settings->compiler,勾选如图选项

IDEA 2020.01版 springboot 热部署_第1张图片

2.2、press ctrl+shift+Alt+/,选择Registry

IDEA 2020.01版 springboot 热部署_第2张图片

2.3、选择下图选项

IDEA 2020.01版 springboot 热部署_第3张图片

3、重启idea生效

你可能感兴趣的:(idea,intellij,idea,spring,boot,开发工具)