how to debug spring application with gradle

后端 未结 5 621
渐次进展
渐次进展 2020-12-23 16:43

I am working on spring app and need to step through a controller method to see how it works. I am working in eclipse and building my app with gradle bootRun co

5条回答
  •  没有蜡笔的小新
    2020-12-23 17:00

    After you run gradle bootRun --debug-jvm the application is suspended until you connect your debugger to the port it is listening on (port 5005).

提交回复
热议问题