AOP
Advice: action taken by an aspect at a particular join point. Different types of advice include "around,"
"before" and "after" advice. (Advice types are discussed below.) Many AOP frameworks, including
Spring, model an advice as an interceptor, maintaining a chain of interceptors around the join point.
Advice types in Spring:
Interception around advice-->org.aopalliance.intercept.MethodInterceptor
Before advice-->MethodBeforeAdvice
Throws advice-->ThrowsAdvice
After Returning advice-->AfterReturningAdvice
Introduction advice-->IntroductionInterceptor extends MethodInterceptor
Advice---wrapped--->Advisor[.getAdvice]
IntroductionAdvisor[DefaultIntroductionAdvisor , IntroductionInfo] PointcutAdvisor[DefaultPointcutAdvisor]
Note the advisor and the interceptor[Advice] order in the chain !
Customize your specific Advisor/Advice[BeanDefinition.ROLE_APPLICATION] not AutoProxyCreator !
Extends------>DefaultPointcutAdvisor[Pointcut-filtering , Advice-MethodInterceptor]
e.g:BeanFactoryTransactionAttributeSourceAdvisor:
Pointcut--matches-->AnnotationTransactionAttributeSource:
AbstractFallbackTransactionAttributeSource how to get @Transactinal attributes.
TransactionInterceptor:MethodInterceptor--invoke-->how to get actual targetClass.
ProxyFactory factory = new ProxyFactory(myBusinessInterfaceImpl);
factory.addAdvice(myMethodInterceptor);
factory.addAdvisor(myAdvisor);
MyBusinessInterface tb = (MyBusinessInterface) factory.getProxy();
<aop:config>
<aop:aspectj-autoproxy />
当使用<aop:config>配置时自动注册AspectJAwareAdvisorAutoProxyCreator,
而使用<aop:aspectj-autoproxy>时会自动注册AnnotationAwareAspectJAutoProxyCreator。
Spring 3.2.13 Transactions:
http://www.springframework.org/schema/tx/spring-tx.xsd
<!--default order Integer.MAX_VALUE:2147483647 order="2147483646" BeanFactoryTransactionAttributeSourceAdvisor-->
<tx:annotation-driven/>
AnnotationDrivenBeanDefinitionParser-->parse-->AopNamespaceUtils.registerAutoProxyCreatorIfNecessary-->AopConfigUtils.registerAutoProxyCreatorIfNecessary-->
InfrastructureAdvisorAutoProxyCreator<------AbstractAdvisorAutoProxyCreator.getAdvicesAndAdvisorsForBean scanning container mgmt beans and findEligibleAdvisors include BeanFactoryTransactionAttributeSourceAdvisor
+
@Configuration
ProxyTransactionManagementConfiguration-->BeanFactoryTransactionAttributeSourceAdvisor-->
TransactionInterceptor<--TransactionAttributeSource
TransactionProxyFactoryBean<--setTransactionAttributeSource
AnnotationDrivenBeanDefinitionParser.AopAutoProxyConfigurer how to build BeanFactoryTransactionAttributeSourceAdvisor BeanDefinition.ROLE_INFRASTRUCTURE[filtering]
BeanDefinitionBuilder builder = BeanDefinitionBuilder.genericBeanDefinition(X.class);
GenericBeanDefinition definition = (GenericBeanDefinition) builder.getRawBeanDefinition();
definition.setRole(BeanDefinition.ROLE_INFRASTRUCTURE);
ConfigurableApplicationContext configurableApplicationContext = (ConfigurableApplicationContext) AC;
DefaultListableBeanFactory defaultListableBeanFactory = (DefaultListableBeanFactory) configurableApplicationContext.getBeanFactory();
defaultListableBeanFactory.registerBeanDefinition("x", definition);
For dynamically registered beans, if you want AOP to affect them, they must be registered through the BeanPostProcessor.
TransactionInterceptor extends TransactionAspectSupport.invokeWithinTransaction-->PlatformTransactionManager around[ getTransaction, commit, rollback ]
AnnotationTransactionAttributeSource-->getTransactionAttribute/TransactionDefinition
TransactionStatus getTransaction(TransactionDefinition:TransactionAttribute definition)
if (isExistingTransaction(transaction)) {
return handleExistingTransaction(definition, transaction, debugEnabled)-->
//for PROPAGATION_SUPPORTS or PROPAGATION_REQUIRED
DefaultTransactionStatus:isNewTransaction(false)&isNewSynchronization-->
actualNewSynchronization-->!TransactionSynchronizationManager.isSynchronizationActive()-->(local synchronizations.get() != null)
}
//else
DefaultTransactionStatus:isNewTransaction&isNewSynchronization-->true/false:-->PROPAGATION_*
if TransactionStatus.isNewSynchronization()-->TransactionSynchronization called on commit.
TransactionSynchronization.
[suspend,resume,beforeCommit/Completion,afterCommit/Completion,flush,STATUS_COMMITTED/ROLLED_BACK/UNKNOWN]
TransactionSynchronizationManager.registerSynchronization(TransactionSynchronization)
if DataSourceTransactionManager around , similarly refer to org.springframework.jdbc.datasource.DataSourceUtils.ConnectionSynchronization
1.org.mybatis.spring.SqlSessionUtils.SqlSessionSynchronization
commit(TransactionStatus status)
if TransactionStatus.isNewSynchronization()-->TransactionSynchronization
if TransactionStatus.isNewTransaction()-->doCommit
@Configuration -->
@ImportResource
org.springframework.config.java.context.JavaConfigApplicationContext
<dependency>
<groupId>org.springframework.javaconfig</groupId>
<artifactId>spring-javaconfig</artifactId>
</dependency>
获取Spring动态代理目标对象(不是单独使用JDK Proxy/CGLIB生成的)
ref-->http://jinnianshilongnian.iteye.com/blog/1613222
相关推荐
本系统的开发与设计是基于vue为前端页面核心框架为django/flask,技术方面主要采用了Html、Js、CSS3、python、Mysql。 本课题使用Python语言进行开发。代码层面的操作主要在PyCharm中进行,将系统所使用到的表以及数据存储到MySQL数据库中,方便对数据进行操作本课题基于WEB的开发平台 ②前端开发选择:Vue。 ②后端开发选择:python、django/flask。 ③数据库选择:MySQL。 ④开发工具选择:pycharm、Navicat for MySQL。 包含了我的信息、用户管理、期货公司管理、开户信息管理、充值信息管理、期货期货信息管理、期货投资管理、取消投资管理、投资风险管理、意见反馈、系统管理
springboot052基于Springboot+Vue旅游管理系统毕业源码案例设计 1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计算机领域相关的毕业设计课题、课程作业等使用,尤其对于人工智能、计算机科学与技术等相关专业,更为适合; 4、下载使用后,可先查看README.md或论文文件(如有),本项目仅用作交流学习参考,请切勿用于商业用途。 5、资源来自互联网采集,如有侵权,私聊博主删除。 6、可私信博主看论文后选择购买源代码。 1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计算机领域相关的毕业设计课题、课程作业等使用,尤其对于人工智能、计算机科学与技术等相关专业,更为适合; 4、下载使用后,可先查看README.md或论文文件(如有),本项目仅用作交流学习参考,请切勿用于商业用途。 5、资源来自互联网采集,如有侵权,私聊博主删除。 6、可私信博主看论文后选择购买源代码。 1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计算机领域相关的毕业设计课题、课程作业等使用,尤其对于人工智能、计算机科学与技术等相关专业,更为适合; 4、下载使用后,可先查看README.md或论文文件(如有),本项目仅用作交流学习参考,请切勿用于商业用途。 5、资源来自互联网采集,如有侵权,私聊博主删除。 6、可私信博主看论文后选择购买源代码。
1.版本:matlab2014/2019a/2024a 2.附赠案例数据可直接运行matlab程序。 3.代码特点:参数化编程、参数可方便更改、代码编程思路清晰、注释明细。 4.适用对象:计算机,电子信息工程、数学等专业的大学生课程设计、期末大作业和毕业设计。 替换数据可以直接使用,注释清楚,适合新手
1.版本:matlab2014/2019a/2024a 2.附赠案例数据可直接运行matlab程序。 3.代码特点:参数化编程、参数可方便更改、代码编程思路清晰、注释明细。 4.适用对象:计算机,电子信息工程、数学等专业的大学生课程设计、期末大作业和毕业设计。 替换数据可以直接使用,注释清楚,适合新手
1.版本:matlab2014/2019a/2024a 2.附赠案例数据可直接运行matlab程序。 3.代码特点:参数化编程、参数可方便更改、代码编程思路清晰、注释明细。 4.适用对象:计算机,电子信息工程、数学等专业的大学生课程设计、期末大作业和毕业设计。 替换数据可以直接使用,注释清楚,适合新手
1.版本:matlab2014/2019a/2024a 2.附赠案例数据可直接运行matlab程序。 3.代码特点:参数化编程、参数可方便更改、代码编程思路清晰、注释明细。 4.适用对象:计算机,电子信息工程、数学等专业的大学生课程设计、期末大作业和毕业设计。 替换数据可以直接使用,注释清楚,适合新手
1.版本:matlab2014/2019a/2024a 2.附赠案例数据可直接运行matlab程序。 3.代码特点:参数化编程、参数可方便更改、代码编程思路清晰、注释明细。 4.适用对象:计算机,电子信息工程、数学等专业的大学生课程设计、期末大作业和毕业设计。 替换数据可以直接使用,注释清楚,适合新手
计算机图形学之动画和模拟算法:Keyframe Animation:碰撞检测与响应.docx
行业研究报告、行业调查报告、研报
调用文心一言api的一个尝试
hertzbeat的docker镜像文件
1.版本:matlab2014/2019a/2024a 2.附赠案例数据可直接运行matlab程序。 3.代码特点:参数化编程、参数可方便更改、代码编程思路清晰、注释明细。 4.适用对象:计算机,电子信息工程、数学等专业的大学生课程设计、期末大作业和毕业设计。 替换数据可以直接使用,注释清楚,适合新手
1.版本:matlab2014/2019a/2024a 2.附赠案例数据可直接运行matlab程序。 3.代码特点:参数化编程、参数可方便更改、代码编程思路清晰、注释明细。 4.适用对象:计算机,电子信息工程、数学等专业的大学生课程设计、期末大作业和毕业设计。 替换数据可以直接使用,注释清楚,适合新手
项目经过测试均可完美运行! 环境说明: 开发语言:java jdk:jdk1.8 数据库:mysql 5.7+ 数据库工具:Navicat11+ 管理工具:maven 开发工具:idea/eclipse
1.版本:matlab2014/2019a/2024a 2.附赠案例数据可直接运行matlab程序。 3.代码特点:参数化编程、参数可方便更改、代码编程思路清晰、注释明细。 4.适用对象:计算机,电子信息工程、数学等专业的大学生课程设计、期末大作业和毕业设计。 替换数据可以直接使用,注释清楚,适合新手
1.版本:matlab2014/2019a/2024a 2.附赠案例数据可直接运行matlab程序。 3.代码特点:参数化编程、参数可方便更改、代码编程思路清晰、注释明细。 4.适用对象:计算机,电子信息工程、数学等专业的大学生课程设计、期末大作业和毕业设计。 替换数据可以直接使用,注释清楚,适合新手
计算机图形学之动画和模拟算法:Procedural Animation:物理基础:力与运动.docx
1.版本:matlab2014/2019a/2024a 2.附赠案例数据可直接运行matlab程序。 3.代码特点:参数化编程、参数可方便更改、代码编程思路清晰、注释明细。 4.适用对象:计算机,电子信息工程、数学等专业的大学生课程设计、期末大作业和毕业设计。 替换数据可以直接使用,注释清楚,适合新手
1.版本:matlab2014/2019a/2024a 2.附赠案例数据可直接运行matlab程序。 3.代码特点:参数化编程、参数可方便更改、代码编程思路清晰、注释明细。 4.适用对象:计算机,电子信息工程、数学等专业的大学生课程设计、期末大作业和毕业设计。 替换数据可以直接使用,注释清楚,适合新手
2112312312321321