码迷,mamicode.com
首页 > 编程语言 > 详细

springboot配置热部署

时间:2021-01-05 11:00:04      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:sources   shift   style   工程   rgb   uil   config   mamicode   src   

话不多说,直接开干。

  1.添加一个热部署的依赖到你项目的pom.xml中

        <!--热部署-->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-devtools</artifactId>
            <scope>runtime</scope>
            <optional>true</optional>
        </dependency>

  2.再添加一个插件到你项目或父工程的pom.xml中

    <build>
        <finalName>你自己工程的名字</finalName>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <configuration>
                    <fork>true</fork>
                    <addResources>true</addResources>
                </configuration>
            </plugin>
        </plugins>
    </build>

  3.开启自动编译选项:

技术图片

 

   4.使用快捷键【ctr+alt+shift+/】,然后如下操作:

技术图片

 

 技术图片

 

  不要点Resore Default,那是重置,不是保存。

   5.重启idea

springboot配置热部署

标签:sources   shift   style   工程   rgb   uil   config   mamicode   src   

原文地址:https://www.cnblogs.com/ibcdwx/p/14220268.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!