I ran into the same problem twice. As soon as I try to update the spring boot maven plugin version to version 1.0.1, the application will not stop at any of the debug breakpoints.
During development, we identified the problem, and we had to fall back to 1.0.1, being on spring parent 1.1.9. What are the risks of such a decision, which I can only guess.
<build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <version>1.1.9.RELEASE</version> </plugin> </plugins> </build>
http://docs.spring.io/spring-boot/docs/current/maven-plugin/examples/run-debug.html - this link never helped. The application just freezes endlessly.
There is a workaround if you work in the default profile by simply debugging the application class, but I cannot configure anything else in this case.
A screenshot showing how the debugger could not stop at the very first breakpoint, and instead the application was launched.

source share