IntelliJ Idea
Configuration
AA fonts
Append to idea.vmoptions
-Dswing.aatext=true
-Dawt.useSystemAAFontSettings=lcd
-Dsun.java2d.xrender=true
Autoreloading with Spring Boot
Common
The required dependency is spring-boot-dev-tools:
dependencies {
developmentOnly "org.springframework.boot:spring-boot-devtools"
}
Semi-automatic
Run → Edit Configurations... → Spring Boot → Application → Build and run → Modify options
- On 'Update' action: select Update trigger file.
- On frame deactivation: select Update classes and resources.
Fully-automatic
- IDE and Project Settings → Settings... → Build, Execution, Deployment → Compiler: select Build project automatically.
- Advanced Settings → Compiler: select Allow auto-make to start even if developed application is currently running.