Vinny
Vinny

Reputation: 149

Debugging in Intellij

I am new to IntelliJ and would like to know how do we put break points in the classes under a jar. I am debugging something and would like to put a break point in DispatcherServlet. I have tried to find it everywhere but cannot find it.

Upvotes: 0

Views: 90

Answers (1)

Vojtech Ruzicka
Vojtech Ruzicka

Reputation: 17075

You can find your third party dependencies in your Project tab under external libraries. There you can select the class, Idea shows you decompiled code and you can put breakpoint in there.

External libraries location enter image description here

Dispatcher Servlet location and breakpoint enter image description here

Upvotes: 1

Related Questions