赞
踩
当我们修改文件和创建文件时,都需要重新启动项目。这样频繁的操作很浪费时间,配置热部署可以让项目自动加载变化的文件,省去的手动操作。
在 pom.xml 文件中添加如下配置:
- <!-- 热部署 -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-devtools</artifactId>
- <optional>true</optional>
- <scope>true</scope>
- </dependency>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <configuration>
- <!-- 没有该配置,devtools 不生效 -->
- <fork>true</fork>
- </configuration>
- </plugin>
- </plugins>
- </build>
如图在 pom.xml配置:
注意:如果配置好之后无效,下面需要修改idea中的两个配置:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。