Session session2 = HibernateUtil.getSessionFactory().openSession();
Transaction tx2 = session2.beginTransaction();
Query q=session2.createQuery("from studBean1 group by SNo");
List<Student_change> l1=(List<Student_change>)q.list();
//Student_change sc=new Student_change();
for(Student_change sc3:l1){
session2.save(sc3);
tx2.commit();
session2.close();
这里来自 studBean1 的数据我可以将数据访问到 Student_change
但它给出了不能从studbean1
to 转换的 excptionStudent_change