在IDEA中Spring boot配置热部署无效问题解决方式

只要在pom文件中添加下面代码段即可


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

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

这样配置在myeclipse中已经可以实现热启动,但是在idea中配置好无效,下面需要修改idea中的两个配置

  1. setting –> compiler ,将 Build project automatically 勾选上
  2. alt + shift + a 搜索 registry 选第一个,弹出框后下拉找到compiler.automake.allow.when.app.running 勾选上即可。

热部署无效问题已解决。

你可能感兴趣的:(spring-boot)