I have a SpringBoot 2.1 project, using Gralde and Angular 7. My ultimate aim to make it very fast to update static files in the 'resources' folder on save.
I've tried the various things to get IntelliJ to automatically update these, and also spring-boot-devtools, but ultimately they all run the "processResources" Gradle task.
My processResources task currently takes 1m 40s as it's coping everything even if only one file has changed. This is on a fast SSD drive. This used to be much faster with older versions of Gradle.
Should processResources copy all files even if only one has changed?
Are there any solutions to make this instantaneous?
Maybe I'm missing something fundamental?