/findMethodDependency

find the class relationship of methods

Primary LanguageJava

# Introduction

this code is used to find the method dependencies between jars.
We know that, classloader will load all jar in a romdam order, but in this way, there will be class conflicts happened online.
In order to avoid this running period class conflict, I wrote this tool.
with this tool, you can find your potential error before your app  is running online.

# commend help

generate eclipse project by running: 		
	maven eclipse:eclipse
package into all-in one jar by running: 	
	mvn assembly:assembly;
run the jar: 					
	java -jar target/class-parse-tool-1.0-SNAPSHOT.jar [one or more jar files directories seperated by space]
More detail: http://www.javaflush.com/%E5%9F%BA%E4%BA%8Ejavassist%E8%BF%9B%E8%A1%8C%E5%AD%97%E8%8A%82%E7%A0%81%E4%B8%AD%E6%96%B9%E6%B3%95%E7%9B%B8%E4%BA%92%E4%BE%9D%E8%B5%96%E5%85%B3%E7%B3%BB%E7%9A%84%E5%88%86%E6%9E%90%E5%B7%A5%E5%85%B7/