Package com.hbtest.model

Examples of com.hbtest.model.Student


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);
View Full Code Here

TOP

Related Classes of com.hbtest.model.Student

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.