步骤:
1.开启工程自动编译
2. Ctrl + Shift + Alt + / 然后选择Registry,开启运行时允许自动编译
3.项目pom文件中添加热部署依赖
<!-- 热部署依赖 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <!-- 将依赖关系标记为可选<optional>true</optional>,防止使用项目将devtools传递性地应用于其他模块 --> <optional>true</optional> </dependency> <!-- 开启热部署 --> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <fork>true</fork> </configuration> </plugin> </plugins> </build>
4.浏览器测试
浏览器缓存可能有影响,可以关闭浏览器缓存
也可以强制用CTRL+F5强制刷新浏览
原文地址:https://www.cnblogs.com/youngyajun/p/11679451.html
时间: 2024-10-21 01:47:14