You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add a core alias sbrd to remote debug Spring Boot applications.
JDK 5 or higher should use the-agentlib option instead of -Xdebug -Xrunjdwp (Java Debug Wire Protocol). -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=9999"
Append arguments via -Drun.jvmArguments and add the Maven command to run the Spring Boot Application via mvn spring-boot:run:
Add a core alias
sbrd
to remote debug Spring Boot applications.JDK 5 or higher should use the
-agentlib
option instead of-Xdebug -Xrunjdwp
(Java Debug Wire Protocol).-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=9999"
Append arguments via
-Drun.jvmArguments
and add the Maven command to run the Spring Boot Application viamvn spring-boot:run
:mvn spring-boot:run -Drun.jvmArguments="-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=9999"
The text was updated successfully, but these errors were encountered: