Package org.springframework.transaction.annotation

Examples of org.springframework.transaction.annotation.SpringTransactionAnnotationParser


     *          AspectJ class weaving)
     */
    public CustomAnnotationTransactionAttributeSource(boolean publicMethodsOnly) {
      this.publicMethodsOnly = publicMethodsOnly;
      this.annotationParsers = new LinkedHashSet<TransactionAnnotationParser>(2);
      this.annotationParsers.add(new SpringTransactionAnnotationParser());
      if (ejb3Present) {
        this.annotationParsers.add(new Ejb3TransactionAnnotationParser());
      }
    }
View Full Code Here

TOP

Related Classes of org.springframework.transaction.annotation.SpringTransactionAnnotationParser

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.