How do I get a list of Java class dependencies for a main class?

前端 未结 5 1257
孤城傲影
孤城傲影 2020-12-16 20:06

Is there a way to find all the class dependencies of a java main class?

I have been manually sifting through the imports of the main class and it\'s imports but then

5条回答
  •  [愿得一人]
    2020-12-16 20:22

    in intellij idea you have the nifty dependency structure matrix. you can explore package- and class-level dependencies perfectly. if you like it simpler, you have a dependency viewer as well, but htere you can only see first-order dependencies.

提交回复
热议问题