Reputation: 423
I am trying to figure out which methods of which class are triggered when i send an api get request to the web application i'm working on. Is it possible to configure the debugger in such a way that it automatically sets a breakpoint at the controller method that is first triggered when sending the api request? For me that would be a quick way to determine where to start my debugging quest. I'm using Java.
Upvotes: 3
Views: 558
Reputation: 2664
you can try wildcard method breakpoint for all methods of the handler class, it will trigger on any class method invocation:
*
as a method name:
Upvotes: 5