package pojo; import java.util.ArrayList; import org.hibernate.Query; import org.hibernate.Session; import org.hibernate.SessionFactory; import org.hibernate.Transaction; import org.hibernate.cfg.Configuration; public class ScopeService { public static SessionFactory sessionFactory; //初始化sessionFactory,创建实例 static { try { //从默认位置读取hibernate.cfg.xml Configuration config = new Configuration().configure(); sessionFactory = config.buildSessionFactory(); } catch (RuntimeException e) { e.printStackTrace(); throw e; } } public void printAllUser() { Session session = sessionFactory.openSession(); Transaction tx = null; ArrayList<Scope> userList = new ArrayList<Scope>(); try { tx = session.beginTransaction(); Query query = session.createQuery("from User as u order by u.name asc"); userList = (ArrayList<Scope>) query.list(); tx.commit(); for (int i = 0; i < userList.size(); i ++) { System.out.println(userList.get(i).getScopeName() ); } } catch (Exception e) { System.out.println(e.toString()); } finally { session.close(); } } }
最近下载更多
wubinbin LV11
2021年12月18日
1212212aa LV1
2021年3月24日
一支耳 LV2
2020年8月28日
gadhkgh LV1
2020年7月2日
cyh11111111 LV1
2020年4月8日
w2j55ko6av2 LV3
2020年2月12日
梦回姑苏 LV1
2020年2月11日
zzzhhh123456 LV1
2019年12月29日
misilin LV4
2019年6月28日
hzxuncle LV1
2019年3月22日