TXT
hibernate
By Dolores Powell,2014-10-05 22:46
53 views
0
import java.util.List;
import org.hibernate.Query;
import org.hibernate.Session;
import org.hibernate.cfg.Configuration;
import com.root.model.Teacher;
public class TeacherTest {
public static void main(String[] args) {
TeacherTest t=new TeacherTest();
t.List();
}
public void add(){
Teacher th=new Teacher();
th.setId(1);
th.setN..