Spring Boot is blocking H2 Console in Debug Mode

后端 未结 1 1694
傲寒
傲寒 2020-12-31 05:20

I\'m trying to access the H2-Console during a WebIntegrationTest in debug mode. However, I noticed that Spring Boot is blocking the H2-console when I\'m debugging the test.

相关标签:
1条回答
  • 2020-12-31 06:26

    Breakpoint can be configured to suspend the whole VM or only a single thread. In IntelliJ you can set this via right-click on the respective breakpoint. My breakpoints were configured to suspend the whole VM and so each breakpoint also blocked to access the H2-Console.

    0 讨论(0)
提交回复
热议问题