美文网首页我爱编程
idea中spring boot 配置热部署 无效

idea中spring boot 配置热部署 无效

作者: Morgan7 | 来源:发表于2018-05-26 11:50 被阅读0次

    pom.xml中添加了热部署

    <dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-devtools</artifactId>
    <version>2.0.2.RELEASE</version>
    <optional>true</optional>
    </dependency>

    application-dev.yml文件添加了
    thymeleaf:
    cache: false #禁止启用缓存

    pom.xml

    <configuration>
    <fork>true</fork>
    <addResources>true</addResources>
    </configuration>

    但是热部署无效

    问题解决

    需要修改idea中的两个配置
    1.setting –> compiler
    将 Build project automatically 勾选上

    2.alt + shift + a 搜索 registry 选第一个,弹出框后下拉找到 compiler.automake.allow.when.app.running 勾选上即可。
    或者
    alt + shift+ctrl+/

    相关文章

      网友评论

        本文标题:idea中spring boot 配置热部署 无效

        本文链接:https://www.haomeiwen.com/subject/poqmjftx.html