Quantcast
Channel: Coffeewithcode.com
Viewing all articles
Browse latest Browse all 40

How to find hibernate version?

$
0
0
How to find hibernate version? 1. By printing out the it from the org.hibernate.Version class. Like below: public class Driver {/*** @param args*/public static void main(String[] args) {System.out.println(org.hibernate.Version.getVersionString());}} 2. By the hibernate jar itself. Double click on hibernate.jar  Double click on META-INF Double click on MANIFEST.MF Opened file will show the information about the hibernate […]

Viewing all articles
Browse latest Browse all 40

Trending Articles