首页 > 其他 > 详细

PlatformTransactionManager

时间:2016-09-14 20:34:45      阅读:331      评论:0      收藏:0      [点我收藏+]

@Bean
@Override
@ConditionalOnMissingBean
public PlatformTransactionManager annotationDrivenTransactionManager() {
return new DataSourceTransactionManager(dataSource);
}

@Bean
@ConditionalOnMissingBean
public PlatformTransactionManager transactionManager() {
return new DataSourceTransactionManager(dataSource);
}

@Bean
public TransactionInterceptor transactionInterceptor() {
Properties attributes = new Properties();
attributes.setProperty("get*", "PROPAGATION_REQUIRED");
attributes.setProperty("put*", "PROPAGATION_REQUIRED");
attributes.setProperty("post*", "PROPAGATION_REQUIRED");
attributes.setProperty("delete*", "PROPAGATION_REQUIRED");
TransactionInterceptor txAdvice = new TransactionInterceptor(annotationDrivenTransactionManager(), attributes);
return txAdvice;
}


@Bean
public AspectJExpressionPointcut aspectJExpressionPointcut(){
AspectJExpressionPointcut pointcut = new AspectJExpressionPointcut();
String transactionExecution = "execution(* " + getTransactionExecution() + "(..))";
if(transactionExecution==null)
transactionExecution = "execution(* com.service.impl.*.*.*(..)) || execution(* com.business.impl.*.*.*(..)) ";
pointcut.setExpression(transactionExecution);
return pointcut;
}

@Bean
public DefaultPointcutAdvisor defaultPointcutAdvisor(){
DefaultPointcutAdvisor advisor = new DefaultPointcutAdvisor();
advisor.setPointcut(aspectJExpressionPointcut());
advisor.setAdvice(transactionInterceptor());
return advisor;
}

 

PlatformTransactionManager

原文:http://www.cnblogs.com/softidea/p/5873317.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!