我有一个我需要保存的UserProfile实体.在数据库中保存实体后,我得到以下异常:
Could not commit Hibernate transaction; nested exception is org.hibernate.TransactionException: Transaction not successfully started
此外,当我看到表时,实体是持久的而不是回滚!
@Transactional(isolation=Isolation.REPEATABLE_READ)
public class HibernateUserProfileDAO implements UserProfileDAO {
private org.hibernate.SessionFactory sessionFactory;
public UserProfile getUserProfile(int userId) {
org.hibernate.classic.Session session = sessionFactory.getCurrentSession();
session.beginTransaction();
UserProfile userProfile = new UserProfile();
userProfile.setUserName("sury1");
session.save(userProfile);
session.getTransaction().commit();
session.close();
return userProfile;
}
}
我正在使用hibernate事务管理器
我的hibernate配置是:
factorybean">
sql">trueMysqLDialect
任何人都可以.告诉我这里发生了什么?
最佳答案
我认为你已成为双重交易管理的受害者.如果您在同一个项目中一起使用Spring Transaction Management和Hibernate Transaction Management,则更有可能遇到此问题.
原文链接:https://www.f2er.com/spring/431631.html那么你的代码应该是:
选项1. Hibernate事务管理
public class HibernateUserProfileDAO implements UserProfileDAO {
private org.hibernate.SessionFactory sessionFactory;
public UserProfile getUserProfile(int userId) {
org.hibernate.classic.Session session = sessionFactory.getCurrentSession();
session.beginTransaction();
UserProfile userProfile = new UserProfile();
userProfile.setUserName("sury1");
session.save(userProfile);
session.getTransaction().commit();
session.close();
return userProfile;
}
}
或选项2.春季交易管理
@Transactional
public class HibernateUserProfileDAO implements UserProfileDAO {
private org.hibernate.SessionFactory sessionFactory;
public UserProfile getUserProfile(int userId) {
org.hibernate.classic.Session session = sessionFactory.getCurrentSession();
UserProfile userProfile = new UserProfile();
userProfile.setUserName("sury1");
session.save(userProfile);
session.close();
return userProfile;
}
}