idea上SpringBoot 热部署 1.5.3RELEASE

SpringBoot 热部署 1.5.3RELEASE

这个项目是在idea上跑的,没有在Ecplise上跑过
打包工具:maven

修改pom.xml

<dependency>
    <groupId>org.springframework.bootgroupId>
    <artifactId>spring-boot-devtoolsartifactId>
    <optional>trueoptional>
dependency>
<plugins>
    <plugin>
        <groupId>org.springframework.bootgroupId>
        <artifactId>spring-boot-maven-pluginartifactId>
        <configuration>
            <fork>truefork>
        configuration>
    plugin>
plugins>

额,这里添加 optional表示 如果有其他项目依赖 此项目的话,排除对spring-boot-devtools的依赖。

IDEA 配置

  1. 打开setting,搜索 make project …
    idea上SpringBoot 热部署 1.5.3RELEASE_第1张图片

把图上的 这一项打开。

  1. 快捷键 Ctrl + Shift +A ,然后搜索 registry,
    idea上SpringBoot 热部署 1.5.3RELEASE_第2张图片
    将compiler.automake.allow.when.app.running 这一项打开

重启Idea 。

你可能感兴趣的:(springboot)