Spring boot 开发中热部署配置(只需两步)

2020-07-31 16:50:31 浏览数 (1)

第一步:添加devtools依赖

代码语言:javascript复制
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-devtools</artifactId>
            <scope>runtime</scope>
            <optional>true</optional>
        </dependency>

要确保依赖成功导入

第二步,打开设置(ctrl alt s),搜索Compiler勾选上Build project automatically

0 人点赞