Welcome to my blog, hope you enjoy reading
RSS

Saturday 28 April 2018

how to get the version of the Spring using Spring.jar

Using below two ways we can find the Spring version:
Process 1: using java program

import org.springframework.core.SpringVersion;

public class VersionChecker
{
    public static void main(String [] args)
    {
        System.out.println("version: " + SpringVersion.getVersion());
    }
}


Process 2: using md5

$ md5sum spring-2.5.5.jar
82a2134b227f717066da4f4b059925d3
http://www.google.com/search?q=82a2134b227f717066da4f4b059925d3

0 comments: