Update the Debugging Documentation of the Spring Boot Maven Plugin

See gh-39392
This commit is contained in:
lukasdooo
2024-02-03 21:37:06 +01:00
committed by Moritz Halbritter
parent 22ec23bc39
commit b25d52c896
4 changed files with 8 additions and 9 deletions

View File

@@ -40,7 +40,7 @@ Doing so lets you attach a debugger to your packaged application, as shown in th
[source,shell,indent=0,subs="verbatim"]
----
$ java -Xdebug -Xrunjdwp:server=y,transport=dt_socket,address=8000,suspend=n \
$ java -agentlib:jdwp=server=y,transport=dt_socket,address=8000,suspend=n \
-jar target/myapplication-0.0.1-SNAPSHOT.jar
----