--Source page >> Notes and Changes Specifically, the method of specifying the following address options has changed.
--Java option
Change before
"-agentlib:jdwp=transport=dt_socket,address=8000,server=y,suspend=y"
--After change
"-agentlib:jdwp=transport=dt_socket,address=0.0.0.0:8000,server=y,suspend=y"
--The contents of the shell (excerpt from the option setting part)
DEBUG="-agentlib:jdwp=transport=dt_socket,address=0.0.0.0:8000,server=y,suspend=y" $JAVA $JAVAOPT $DEBUG $CONTROLLER $APPCONF $WEBINF $APL $SERIAL_NO >> ${LOG} 2>> ${LOG}
Resolved by adding the required jars at runtime to the dependencies
java -Xdebug -Xrunjdwp:transport=dt_socket,server=y,address=0.0.0.0:8000,suspend=y -jar
Recommended Posts