HibernateSessionFactory.getSessionFactory().getCurrentSession(); 获取到的session不是同一个勒?
Sessionsession=HibernateSessionFactory.getSessionFactory().getCurrentSession();Sessio...
Session session=HibernateSessionFactory.getSessionFactory().getCurrentSession();
Session session2=HibernateSessionFactory.getSessionFactory().getCurrentSession();
这2个session不一样啊,
public class HibernateSessionFactory {
public static SessionFactory getSessionFactory(){
//读取配置文件
Configuration cf=new Configuration().configure();
//创建一个提供sessionFactory对象的工厂
SessionFactory sessionfactory=cf.buildSessionFactory();
return sessionfactory;
}
}
这个工厂哪里错了?初学者,见谅。。
上面的没有说清楚, 是这样的:
public void addUser(User user) {
Session session=HibernateSessionFactory.getSessionFactory().getCurrentSession();
Transaction t=session.beginTransaction();
Session session2=HibernateSessionFactory.getSessionFactory().getCurrentSession();
System.out.println(session==session2);
......
}
为什么session不一样勒? 展开
Session session2=HibernateSessionFactory.getSessionFactory().getCurrentSession();
这2个session不一样啊,
public class HibernateSessionFactory {
public static SessionFactory getSessionFactory(){
//读取配置文件
Configuration cf=new Configuration().configure();
//创建一个提供sessionFactory对象的工厂
SessionFactory sessionfactory=cf.buildSessionFactory();
return sessionfactory;
}
}
这个工厂哪里错了?初学者,见谅。。
上面的没有说清楚, 是这样的:
public void addUser(User user) {
Session session=HibernateSessionFactory.getSessionFactory().getCurrentSession();
Transaction t=session.beginTransaction();
Session session2=HibernateSessionFactory.getSessionFactory().getCurrentSession();
System.out.println(session==session2);
......
}
为什么session不一样勒? 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询