首页 > 其他 > 详细

String_boot热部署学习

时间:2018-06-17 10:48:55      阅读:225      评论:0      收藏:0      [点我收藏+]
开启

设置Idea Ctrl+Alt+S 查找make project automatically --> 选中
技术分享图片

设置Idea Ctrl+Alt+S 输入: Registry compiler.automake.allow.when.app.running

技术分享图片

pom.xml配置:

<dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-devtools</artifactId>
            <optional>true</optional>
            <scope>true</scope>
        </dependency>

        <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <configuration>
                    <fork>true</fork>  //该配置必须
                </configuration>
            </plugin>
        </plugins>

说明:
新建一个类与方法修改都能启动

String_boot热部署学习

原文:http://blog.51cto.com/357712148/2130113

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!