How to put breakpoint in class without having it's source?

后端 未结 3 1893
-上瘾入骨i
-上瘾入骨i 2021-02-14 02:30

I have a web application where I need to find all classes that accesses the http request object (because one of them is causing a hard to find bug). Therefore I would like to pu

3条回答
  •  半阙折子戏
    2021-02-14 03:07

    I'm afraid you will need the source code if you want this to work.

    For debugging, you need readable code + line numbers that match this code. None of these items are included in the class files

提交回复
热议问题