Package org.springframework.batch.core.step.item

Examples of org.springframework.batch.core.step.item.SimpleRetryExceptionHandler


    batchRetryTemplate.setRetryPolicy(retryPolicyWrapper);

    // Coordinate the retry policy with the exception handler:
    RepeatOperations stepOperations = getStepOperations();
    if (stepOperations instanceof RepeatTemplate) {
      SimpleRetryExceptionHandler exceptionHandler = new SimpleRetryExceptionHandler(retryPolicyWrapper,
          getExceptionHandler(), nonRetryableExceptionClasses);
      ((RepeatTemplate) stepOperations).setExceptionHandler(exceptionHandler);
    }

    if (retryContextCache != null) {
View Full Code Here

TOP

Related Classes of org.springframework.batch.core.step.item.SimpleRetryExceptionHandler

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.