vote up 3 vote down star

Does anyone have code to detect duplicate JARs in the classpath?

Background: When there are two versions of the same JAR in the classpath, really strange things can happen. This can even happen when using tools like Maven: Change a dependency and build the WAR without cleaning first. Since target/webapp/WEB-INF/lib wasn't cleaned, the dependency will be in there twice.

Is there a safety-net for this?

flag

57% accept rate

4 Answers

vote up 8 vote down check

JBoss Tattletale might help you with this.

It's a free tool which scans the JAR files used by your project and gives you a report about them.

Amongst its feature are:

  • Spot if a class is located in multiple JAR files
  • Spot if the same JAR file is located in multiple locations
  • Find similar JAR files that have different version numbers
link|flag
vote up 1 vote down

System.getProperty("java.class.path"), split it, sort it, look at it with the human eye :-).

It will not include the classpath derived from manifests inside other jars thou :-(.

Or use http://www.jboss.org/tattletale as one of the posters suggested.

link|flag
This assumes that your dupes have the same name. Often the problem is duplicate classes in jars with different names. You'd need more than one pair of eyeballs there. – sal May 18 at 16:21
Usually, the names will be different only in a version somewhere (usually a suffix). Programmatically you could detect and highlight common prefixes. – Software Monkey May 18 at 17:59
You only need some sort of a warning sign in certain cases. What I proposed can be coded in 2 minutes and run as some sort of smoke test to catch "normal/easy" duplicates at the application startup. If you want extensive analysis use a tool like the tattletale proposed :-). – Toader Mihai Claudiu May 18 at 23:15
vote up -1 vote down

You can write a simple script to compare the md5 sum of every jar file to every other jar file and deleting duplicates along the way.

link|flag
1  
two versions means by definition that the md5 sum will not match :-) – Toader Mihai Claudiu May 18 at 14:27
ah sorry, missed the different version part of your question – neesh May 18 at 14:32
vote up 1 vote down

I think the simplest way is to simply trash the target directory first. Hopefully copying all the .jar files in isn't going to be time-consuming.

Otherwise you're going to have to somehow compare sizable files (whether directly, via computed checksum or similar). Which doesn't sound very nice at all.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.