Analysis and structure of Java code using a tool or pluggin

Is there any tool to help analyze the structure of the code in a java project, either as an eclipse or as a separate one? I think something similar to what Structure101 seems to do, but I'm looking for something for free.
That is, to visualize the dependencies between jars, classes, class hierarchies, etc.
Basically, it’s better to understand the existing code base faster than setting encoding rules or a profile, etc.

+4
source share
3 answers

do you mean sonar ?

+1
source

Tons of them. The fact is that you probably want google for different tests, for example, "McCabe complex java" or "test coverage java".

You can take a look at this wikipedia article .

Update

Yeah. Try depfind .

+1
source

Source: https://habr.com/ru/post/1337574/


All Articles