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
gradle bootRun
For build.gradle.kts file you can also simply use below:
build.gradle.kts
tasks.withType { jvmArgs = listOf("-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=0.0.0.0:32323") }