有谁知道获取项目的确切类依赖项的方法(而不是它依赖的 jars)?然后在类路径的 jar 中找到这些依赖项。
例如,如果我使用StringUtil
和RestTemplate
来自 apache-commons 和 Spring,我希望看到类似的内容:
org.apache.commons.lang.StringUtils.class -> M2_REPO/commons-lang/commons-lang/2.5/commons-lang-2.5.jar
org.springframework.web.client.RestTemplate.class -> M2_REPO/org/springframework/spring-web/3.2.1.RELEASE/spring-web-3.2.1.RELEASE.jar
谢谢,