springboot,idea,调试技巧,开启调试的方法
第一步启动idea,进入主界面导航栏处选择打开Run/Debug Configurations。
第二步选择Spring Boot 下要进行debug调试的服务。在VM options:的填写框中写入-Xms512m -Xmx512m -Xmn164m -XX:MaxPermSize=250m -XX:ReservedCodeCacheSize=64m -Dserver.port=8080 -ea。
第三步然后debug运行微服务主程序入后即@springbootapplication注释的类。
第四步打断点,进入debug模式。 Step Over (F8):步过。 Step Into (F7):步入。
|springboot,idea,调试技巧,开启调试的方法
Springboot 开启调试的方法 调试技巧