zoukankan      html  css  js  c++  java
  • SSH中将hibernate托管给spring获取session的方法

    import org.hibernate.HibernateException;
    import org.hibernate.Session;
    import org.hibernate.SessionFactory;
    import org.springframework.beans.factory.BeanFactory;
    import org.springframework.beans.factory.xml.XmlBeanFactory;
    import org.springframework.core.io.ClassPathResource;
    import org.springframework.core.io.Resource;




    public class PlanMachineTest {
    private static final SessionFactory sessionFactory; 
    static { 
    try { 
    Resource resource=new ClassPathResource("/applicationContext.xml"); 
    BeanFactory factory=new XmlBeanFactory(resource); 
    sessionFactory = (SessionFactory)factory.getBean("sessionFactory"); 
    } catch (HibernateException ex) { 
    throw new RuntimeException("Exception building SessionFactory: " 
    + ex.getMessage(), ex); 




        public static void main(String[] args) {
        Session session = sessionFactory.openSession();
        Machine m = (Machine)session.get(Machine.class, 1);
            PlanMachine pm = new PlanMachine();
            pm.setMachine(m);
            save(pm);
        }


        public static void save(Object o){
            Session session = sessionFactory.openSession();
            session.beginTransaction();
            session.save(o);
            session.getTransaction().commit();
            session.close();
            sessionFactory.close();
        }
    }

  • 相关阅读:
    适者生存还是强者生存
    写给十岁的清为
    毕业后的十年
    Python3 字符编码
    线段树模板
    F
    E
    D
    C
    B
  • 原文地址:https://www.cnblogs.com/shenguo/p/3958218.html
Copyright © 2011-2022 走看看