构建docker容器
优雅关闭服务
远程调试
启动时,加上 -Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=[debug port]
注意加上远程调试前,也要在docker中配置调试端口的映射
下面是一个完整的配置:
java
-Dfile.encoding=UTF-8
-Duser.timezone=GMT+08
-Dspring.profiles.active=[profile]
-Xdebug
-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=[debug port]
-jar [jar]