spring3.x
文章平均质量分 66
吴风斌
这个作者很懒,什么都没留下…
展开
-
JDK动态代理和CGLIB动态代理,实现Spring注解管理事务区别。
注解式事务配置 1.JDK动态代理 "txManager"/> 默认启用JDK动态代理,JDK只能代理接口不能代理类。 @Transactional注解可以标注在接口上,也可以标注到接口对应实现类方法上,都可以陪扫描到。 2.CGLIB动态代理 为了解决此问题引入CGLIB动态代理。可以代理类。 "txManager" proxy-target-class=原创 2017-09-08 17:57:51 · 1568 阅读 · 0 评论 -
springMvc请求到返回的流程request-->response
springMvc核心类 : org.springframework.web.servlet.DispatcherServlet 核心方法:org.springframework.web.servlet.DispatcherServlet.doDispatch(HttpServletRequest, HttpServletResponse) /** * Process the actua原创 2017-09-21 11:10:09 · 1950 阅读 · 0 评论 -
spring事务传播属性,隔离级别
package org.springframework.transaction; import java.sql.Connection; /** * Interface that defines Spring-compliant transaction properties. * Based on the propagation behavior definitions analogous原创 2017-09-21 11:59:14 · 521 阅读 · 0 评论