springboot项目idea热部署的教程详解
作者:sfencs
这篇文章主要介绍了springboot项目idea热部署,本文通过图文并茂的形式给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
1.添加依赖
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <optional>true</optional> <scope>true</scope> </dependency>
2.开启自动编译
3.ctrl+shifi+alt+/
点击registry
选择compiler autoMake allow when app running
接下来在你进行项目修改切换到浏览器时就会发现springboot重新加载了
4.排除热部署范围
将不需要热部署的路径定义到配置文件中
spring.devtools.restart.exclude=static/**,public/**
总结
到此这篇关于springboot项目idea热部署的文章就介绍到这了,更多相关springboot项目idea热部署内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!