springboot项目热部署

在pom依赖文件中添加:


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

    org.springframework.boot
    spring-boot-maven-plugin
    
        true
        true
    

在配置文件中添加:

#热部署配置
devtools:
    restart:
        enabled: true
        #检测更改目录
        additional-paths: src/main/java
        #解决项目自动重新编译后接口报404
        poll-interval: 3000
        quiet-period: 1000

在IDEA setting中设置:

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

springboot项目热部署_第2张图片重启IDEA   即可食用

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