博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
spring 事务配置与springmvc配置注意事项
阅读量:6077 次
发布时间:2019-06-20

本文共 704 字,大约阅读时间需要 2 分钟。

hot3.png

spring与springmvc在架构中一起使用时,容易碰到一个事务配置失效的问题,今天调了很久才发现, 1:如果springmvc配置controller扫包到单独的controller包时,不需要配置去除service注解,同样service也不需要配置去除controller注解,事务都能生效。 2:如果springmvc配置controller扫包到一个非终点节点包时,需要做如下配置才能使事务生效。 <context:component-scan base-package="net.hunme" > <context:include-filter type="annotation" expression="org.springframework.stereotype.Controller" /> <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Service" /> </context:component-scan> <context:component-scan base-package="net.hunme"> <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller" /> </context:component-scan>

转载于:https://my.oschina.net/u/1162491/blog/791555

你可能感兴趣的文章
网络资源管理系统LANsurveyor实战体验
查看>>
Windows 10 Build 9879 新变化(内含ISO下载)
查看>>
SFB 项目经验-39-分配公网证书 For 反向代理服务器 TMG 2010(图解)
查看>>
幼儿园小朋友可以教创业者的事
查看>>
SharePoint Server 2013 之二:准备数据库
查看>>
db link的查看创建与删除
查看>>
perl学习5--子程序中自动识别参数
查看>>
C#--GDI+的PathGradientBrush类的使用
查看>>
sql server 查询任务管理器数据
查看>>
让office2007支持公司痕迹保留
查看>>
【android】使用handler更新UI
查看>>
提取图标
查看>>
C++中的static
查看>>
BMP图像存储格式
查看>>
信息的传递 认识自身5
查看>>
Apache将整合Google Wave功能
查看>>
PowerDesigner 的简单使用(逻辑模型转物理模型和生成sql语句)
查看>>
H凹变换—lhMorpHConcave
查看>>
通配符 与 正则表达式
查看>>
mochiweb 源码阅读(十五)
查看>>