我有一个我需要保存的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事务管理器
<bean id="transactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
<property name="sessionFactory" ref="sessionFactory"/>
</bean>
我的hibernate配置是:
<bean id="sessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
<property name="dataSource" ref="dataSource"/>
<property name="packagesToScan" value="com.springheatmvn.domain"/>
<property name="hibernateProperties">
<props>
<prop key="hibernate.connection.pool_size">10</prop>
<prop key="hibernate.connection.show_sql">true</prop>
<prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>
<prop key="hibernate.hbm2ddl.auto">update</prop>
</props>
</property>
</bean>
任何人都可以。告诉我这里发生了什么?
答案 0 :(得分:10)
我认为你已成为双重交易管理的受害者。如果您在同一个项目中同时使用Spring Transaction Management
和Hibernate Transaction Management
,则更有可能遇到此问题。
您的代码应该是:
选项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。 Spring事务管理
@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;
}
}
答案 1 :(得分:0)
也可能是extension Array {
func splitBy<Key:Hashable> (keyMaker: (T) -> Key) -> Dictionary<Key, T> {
let theSet = Set (self.map (keyMaker))
return Dictionary (dictionaryLiteral: theSet.map { (key:Key) in
return (key, self.filter { key == keyMaker($0) })
})
}
}
和org.springframework.orm.hibernate3.HibernateTemplate
之间的冲突。
如果您正在处理旧项目,可以找到正在使用的org.hibernate.Session
。
如果您使用更新的方式创建新DAO,例如hibernate的HibernateTemplate
,并在同一函数上使用两个DAO,您将发现此错误。
解决方案:使用其中一个。在我的情况下,我不得不使用Session
,以便不改变旧程序的所有其余部分。