美文网首页
IntelliJ 2022 配置 Spring Boot Dev

IntelliJ 2022 配置 Spring Boot Dev

作者: CHMAX | 来源:发表于2022-10-04 17:36 被阅读0次

一、添加依赖

在项目 pom.xml 中添加依赖:

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

二、配置 IDEA

  1. Build,Execution,Deployment -> Compiler,勾选 Build project automatically
  1. Advanced Settings,勾选 Allow auto-make to start even if developed application is currently running
  1. 重启服务即可

相关文章

网友评论

      本文标题:IntelliJ 2022 配置 Spring Boot Dev

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