SpringBoot进入debug模式

第一种

命令行

java –jar  xxx.jar   --debug

 

 

第二种

在application.properties中设置属性

debug=true

 

 

第三种

在启动上面设置Run Configurations…

在VM arguments中添加 –Ddebug

原文地址:https://www.cnblogs.com/chengxiaolong/p/10210820.html