当前位置: 代码迷 >> VC/MFC >> springmvc+spring4+hibernate的剔除和更新方法无效,已经解决
  详细解决方案

springmvc+spring4+hibernate的剔除和更新方法无效,已经解决

热度:203   发布时间:2016-05-02 03:47:14.0
springmvc+spring4+hibernate的删除和更新方法无效,已经解决
没有报任何的错误, 在执行删除或者更新后手动添加getSession().flush()方法,可是单元测试就可以执行,所以估计应该是事务问题;

方法是把事务的配置,从applicationContext移到springmvc.xml文件中去
<!-- 配置事务管理 -->
<bean id="txManager" class="org.springframework.orm.hibernate4.HibernateTransactionManager">
<property name="sessionFactory" ref="sessionFactory"></property>
</bean>
<tx:annotation-driven transaction-manager="txManager"/>

或者
?

@SuppressWarnings("unchecked")
@Repository
@Transactional
@EnableTransactionManagement
public abstract class DaoSupportImpl<T> implements DaoSupport<T> {

最终解决方案:srpingmvc.xml的扫描配置,只扫描controller包的类,不扫描其他的
正确: <context:component-scan base-package="com.myshopping.controller"></context:component-scan>
错误: <context:component-scan base-package="com.myshopping"></context:component-scan>,会覆盖掉spring.xml容器已经装配好的类。



struts2+spring4+hibernate4的组合方式不存在这样的问题,所以推论是springmvc的原因。
想到servlet的组件初始化顺序:listener->filter->servlet,因为spring容器的初始化,使用的是listener方式,里面配了自动扫描:
<context:component-scan base-package="com.myshopping"></context:component-scan>,该注释扫描了全部的类,[email protected],事务管理器在appliactionContext.xml文件中有配置,所以会自动使用;

springmvc.xml是以servlet的方式初始化容器的,里面又扫描了一次:
<context:component-scan base-package="com.myshopping"></context:component-scan>,也会扫描到已经带有事务管理的services的类,重新自动装配一次,因为springmvc.xml文件中没有配置事务管理器(怪不得把事务管理器配置到springmvc.xml文件中有用),所以services的类不再有事务管理,所以解决办法是把springmvc.xml文件的注解扫描配置成只扫描controller包就可以了,这样就不会覆盖到已经有事务管理的类。
  相关解决方案