spring+springMVC,声明式事务失效,原因以及解决办法

标签: spring springmvc 原因 | 发表时间:2015-10-29 21:27 | 作者:lihaiming
出处:http://www.iteye.com

一.声明式事务配置:

[html]  view plain copy 在CODE上查看代码片 派生到我的代码片
 
 
  1.   

 

 

[html]  view plain copy 在CODE上查看代码片 派生到我的代码片
 
 
  1. <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">  
  2.     <property name="dataSource" ref="dataSource" />  
  3. </bean>  
  4.    <tx:advice id="txAdvice" transaction-manager="transactionManager">  
  5.    <tx:attributes>  
  6.          <tx:method name="add*" propagation="REQUIRED" read-only="false"/>  
  7.          <tx:method name="del*" propagation="REQUIRED" read-only="false"/>  
  8.          <tx:method name="get*" propagation="REQUIRED" read-only="true"/>  
  9.          <tx:method name="mod*" propagation="REQUIRED" read-only="false" />            
  10.    </tx:attributes>  
  11.    </tx:advice>  
  12.    <aop:config>     
  13.     <aop:pointcut id="serviceMethods" expression="execution(public * com.lexing.platform.service.*.*(..))" />  
  14.     <aop:advisor  advice-ref="txAdvice" pointcut-ref="serviceMethods"/>  
  15.    </aop:config>  


二.声明式事务失效,原因

 

 

根本原因:由子容器扫描装配了@Service 注解的实例。

spring的context是父子容器,由ServletContextListener 加载spring配置文件产生的是父容器,springMVC加载配置文件产生的是子容器,子容器对Controller进行扫描装配时装配了@Service注解的实例 (@Controller 实例依赖@Service实例),而该实例理应由父容器进行初始化以保证事务的增强处理,所以此时得到的将是原样的Service(没有经过事务加强处理,故而没有事务处理能力。

三.解决办法

1.spring配置文件applicationContext中:

 

[html]  view plain copy 在CODE上查看代码片 派生到我的代码片
 
 
  1. <!-- 不扫描带有@Controller注解的类 ,让 springMVC 子容器加载。  
[html]  view plain copy 在CODE上查看代码片 派生到我的代码片
 
 
  1. <context:component-scan base-package="com.lexing.platform">     
  2.     <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller"/>     
  3. </context:component-scan>    

 

 

2.springMVC配置文件 servlet-context.xml中

 

[html]  view plain copy 在CODE上查看代码片 派生到我的代码片
 
 
  1. <!-- 将 带有 @Service注解的类,交由spring 父容器实例化,[ @Service实例依赖@Repository实例,故spring父容器也会装配<span style="font-family: Arial, Helvetica, sans-serif;">@Repository 实例</span><span style="font-family: Arial, Helvetica, sans-serif;">]</span>  
[html]  view plain copy 在CODE上查看代码片 派生到我的代码片
 
 
  1. <context:component-scan base-package="com.lexing.platform">     
  2.     <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Service"/>     
  3. </context:component-scan>     
  4. 本文来源于: http://blog.csdn.net/z69183787/article/details/37819627


已有 0 人发表留言,猛击->> 这里<<-参与讨论


ITeye推荐



相关 [spring springmvc 原因] 推荐:

spring+springMVC,声明式事务失效,原因以及解决办法

- - 开源软件 - ITeye博客
根本原因:由子容器扫描装配了@Service 注解的实例. 1.spring配置文件applicationContext中:. . . .

struts1,struts2,springMVC终极对比

- - CSDN博客Web前端推荐文章
         最近做项目用到了struts2,之前一直是用struts1和springMVC. 感觉到了struts2从很大程度上和这两个还是有很大区别的,所以今天搜集了些资料,给他们做一下对比.          Struts1官方已经停止更新,现在用的也比较少,这里主要讲一下struts2和struts1比较都有哪些不同和进步.

springmvc文件上传下载

- - ITeye博客
在网上搜索的代码 参考整理了一份. commons-fileupload.jar与commons-io-1.4.jar二个文件. 1、表单属性为: enctype="multipart/form-data". 2、springmvc配置.

SpringMVC 拦截器 筛选

- - ITeye博客
 如果只配置拦截类似于*.do格式的url,则对静态资源的访问是没有问题的,但是如果配置拦截了所有的请求(如我们上面配置的“/”),就会造成js文件、css文件、图片文件等静态资源无法访问. 一般Web应用服务器默认的Servlet名称是"default",所以这里我们激活Tomcat的defaultServlet来处理静态文件.

SpringMVC 消息转换器HttpMessageConverter

- - 企业架构 - ITeye博客
在SpringMVC中,可以使用@RequestBody和@ResponseBody两个注解,分别完成请求报文到对象和对象到响应报文的转换,底层这种灵活的消息转换机制,就是Spring3.x中新引入的HttpMessageConverter即消息转换器机制. 还是回到请求-响应,也就是解析请求体,然后返回响应报文这个最基本的Http请求过程中来.