How can I visualize jar (not plugin) dependencies?

后端 未结 9 637
情深已故
情深已故 2020-12-08 17:40

I am currently refactoring a large Java application. I have split up one of the central (Eclipse) projects into about 30 individual \"components\", however they are still he

相关标签:
9条回答
  • 2020-12-08 18:13

    Check out JBoss Tattletale. It might not do all you ask but it's worth checking out. It's still relatively new though.

    The tool will provide you with reports that can help you

    • Identify dependencies between JAR files
    • Find missing classes from the classpath
    • Spot if a class is located in multiple JAR files
    • Spot if the same JAR file is located in multiple locations
    • With a list of what each JAR file requires and provides
    • Verify the SerialVersionUID of a class
    • Find similar JAR files that have different version numbers
    • Find JAR files without a version number
    • Locate a class in a JAR file
    • Get the OSGi status of your project
    • Remove black listed API usage
    0 讨论(0)
  • 2020-12-08 18:14

    Structure101 is capable of visualizing class and method JAR level dependencies in Jboss 5.

    See the screenshot below or view it larger.

    0 讨论(0)
  • 2020-12-08 18:16

    Take a look at Dependency Finder

    0 讨论(0)
提交回复
热议问题