vote up 2 vote down star

I've inherited an app that uses Spring. The original developers are not available. The Spring jar file is just "spring.jar", so there's no version# in the filename to help me. I'd like to download the Spring source corresponding to the jar file. The MANIFEST.MF file has "Spring-Version: 1.2" however that's not precise enough. I've looked at version 1.2.1 and 1.2.9 and it doesn't match up quite right. The key thing is that org.springframework.web.servlet.view.AbstractCachingViewResolver has a prepareView method which is called from resolveViewName and it does not seem to be in 1.2.1 or 1.2.9.

Is there any easy way to track down the right version?

flag

71% accept rate

4 Answers

vote up 7 vote down check

This will do it:

import org.springframework.core.SpringVersion;

public class VersionChecker
{
    public static void main(String [] args)
    {
        SpringVersion version = new SpringVersion();

        System.out.println("version: " + version.getVersion());
    }
}

Compile and run this with spring.jar in your CLASSPATH and it'll display the version for you. See the javadocs as well.

link|flag
It came back as "1.2" :( – Gary Kephart Jun 3 at 22:49
I tested this against Spring JARs I have on my desktop. It was able to distinguish between 2.5.2, 2.5.6, and 3.0.0.M2, so I say the code is correct. Besides, it's a class from Spring - are you gonna doubt them? Looks like you have 1.2. – duffymo Jun 3 at 22:57
Just checked it against another spring.jar that's some earlier work. I had no idea of the version, but the code came back with 1.2.6. I'm not sure why you only get 1.2. – duffymo Jun 3 at 23:01
Except that there's no download for just "1.2". There's 1.2.0, 1.2.0.RC1 and 1.2.0.RC2. I took the time to download all of them, and it looks like I have either RC1 or RC2, both of which have the prepareView method. Just 1.2.0 does not have it though. – Gary Kephart Jun 3 at 23:14
2  
Perhaps someone compiled the JAR themselves from source? – matt b Jun 4 at 1:36
show 4 more comments
vote up 0 vote down

You can try looking inside the jar's MANIFEST.MF in the META-INF directory - it should indicate what version yo're working with.

link|flag
vote up 0 vote down

According to mvnrepository.com 1.2.9 weights 2.2MB and 1.2.1 weights 2.0MB, that page also has a link for downloading both. I think the weight difference is enough for comparing the files. If you can't see the difference just checksum. If you can't see a relation neither with 1.2.1 nor 1.2.9 you can use the page to download any other version quickly (I use it often)

NOTE: If your JAR is below 2.0MB then I'm afraid duffymo has reason and your JAR is 1.2

link|flag
I don't see how size is relevant for determining version. The 1.2.6 version I have is 1.8MB, but they don't choose the version number based on size. Did I miss something about your suggestion? – duffymo Jun 3 at 23:10
vote up 1 vote down

How about checksumming the JAR file and comparing it to the spring.jar files in the distributions from SpringSource? Might take an hour or so to do the downloads, but it should be definitive.

link|flag

Your Answer

Get an OpenID
or

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