import com.hbtest.model.Student;
public class StudentTest {
@Test
public void testStudentSave(){ Student s = new Student();
s.setName("s1");
s.setAge(1);
s.setId(5);
Configuration cfg = new Configuration();
SessionFactory sf = cfg.configure().buildSessionFactory();
Session session = sf.openSession();
session.beginTransaction();
session.save(s);