IntelliJ IDEA

https://www.notion.so/IntelliJ-IDEA-091b588d904749aeaf9efd7c9fb3215a

Auto-build

  • Preferences → Build, Execute, Deployment → Compiler → [x] Build project automatically
  • Command + Shift + A (on MacOS) → Type “Registry” → [x] compiler.automake.allow.when.app.running
  • Add dependency to pom.xml

    1
    2
    3
    4
    5
    6
    
      <dependency>
          <groupId>org.springframework.boot</groupId>
          <artifactId>spring-boot-devtools</artifactId>
          <version>2.5.0</version>
          <optional>true</optional>
      </dependency>
    
This post is licensed under CC BY 4.0 by the author.