I created a spring boot application using spring initializer. It was working okay and configured my intellij IDE to auto reload using devtools dependency.
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
</dependency>
It was working fine. Then I configured my application for jsf support. After this auto reload is not working any more. For every single changes in xhtml pages and classes I have to rerun everything.
I tried several solutions but nothing working so far. I have the code here https://github.com/shiblybcc/springjsp
Is there any way to auto reload every changes I make to my application without manually doing rerun?
I am on linux, using intellij IDE, spring boot and jsf, maven.