Package com.skyline.energy.annotation

Examples of com.skyline.energy.annotation.Transaction.rollback()


    Annotation annotation = actualMethod.getAnnotation(Transaction.class);
    Transaction tx = (Transaction) annotation;
    if(tx != null) {
      this.isolationLevel = tx.isolation();
      this.readOnly = tx.readonly();
      this.rollback = tx.rollback();
      needTransaction = true;
    } else {
      needTransaction = false;
    }
  }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.