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
The method org.springframework.cloud.deployer.spi.local.AbstractLocalDeployerSupport#buildRemoteDebugInstruction is not building correct debug instruction for Java 9+.
The debug instruction now requires *: in front of the port.
Workaround:
instead of using deployer.*.local.debugPort=5005 and debugSuspend you can set it in javaopts: deployer.*.local.javaOpts=-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5005
The text was updated successfully, but these errors were encountered:
The method
org.springframework.cloud.deployer.spi.local.AbstractLocalDeployerSupport#buildRemoteDebugInstruction
is not building correct debug instruction for Java 9+.The debug instruction now requires
*:
in front of the port.Workaround:
instead of using
deployer.*.local.debugPort=5005
anddebugSuspend
you can set it in javaopts:deployer.*.local.javaOpts=-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5005
The text was updated successfully, but these errors were encountered: