zoukankan      html  css  js  c++  java
  • PlatformTransactionManager

    @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;
    }

  • 相关阅读:
    用数组实现的字符串和用指针实现的字符串
    c语言 10
    c语言 10-4
    函数间数组的传递,是以指向第一个元素的指针的形式进行传递的。
    openjudge7624 山区建小学
    NOIP2000 乘积最大
    openjudge6252 带通配符的字符串匹配
    codevs 3289 花匠
    codevs 3641 上帝选人
    各种子序列问题
  • 原文地址:https://www.cnblogs.com/softidea/p/5873317.html
Copyright © 2011-2022 走看看