Merge branch '3.1.x' into 3.2.x

Closes gh-39422
This commit is contained in:
Moritz Halbritter
2024-02-06 13:10:15 +01:00
4 changed files with 8 additions and 9 deletions

View File

@@ -79,11 +79,11 @@ The following configuration suspend the process until a debugger has joined on p
include::../maven/running/debug-pom.xml[tags=debug]
----
These arguments can be specified on the command line as well, make sure to wrap that properly, that is:
These arguments can be specified on the command line as well:
[indent=0]
----
$ mvn spring-boot:run -Dspring-boot.run.jvmArguments="-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005"
$ mvn spring-boot:run -Dspring-boot.run.jvmArguments=-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=*:5005
----

View File

@@ -8,7 +8,7 @@
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<jvmArguments>
-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005
-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=*:5005
</jvmArguments>
</configuration>
</plugin>