springboot项目idea热部署

1.添加依赖


            org.springframework.boot
            spring-boot-devtools
            true
            true
        

2.开启自动编译

springboot项目idea热部署_第1张图片

3.ctrl+shifi+alt+/

点击registry
springboot项目idea热部署_第2张图片

选择compiler autoMake allow when app running

springboot项目idea热部署_第3张图片

接下来在你进行项目修改切换到浏览器时就会发现springboot重新加载了

4.排除热部署范围

将不需要热部署的路径定义到配置文件中

spring.devtools.restart.exclude=static/**,public/**

你可能感兴趣的:(springboot项目idea热部署)