NullPointerException while trying to add an orm layer using hibernate
问题 Well,I have been trying to add an orm layer for past 3 weeks and i havent been able to do so.I was trying to learn from the tutorial.I have done whatever the tutorial says .Here is the code Student.java package com.codinghazard.actions; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.Id; import javax.persistence.Table; @Entity @Table(name="student") public class Student { @Id @GeneratedValue private int id;