I am using devtools in spring-boot.
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
</dependency>
I run in debugging mode, but I cannot hit any breakpoint, the v is missing from the breakpoint indicating the class has not loaded. If I remove the devtools dependency from POM, the breakpoints start hitting. Is there a way I can use devtools and hit the breakpoints also ?
This is how I run it in debugging mode :
Using the debug mode here.