Uses of Interface
org.springframework.batch.repeat.exception.ExceptionHandler
Packages that use ExceptionHandler
Package
Description
Step level builders for java based job configuration.
Factories for step level components.
Specific implementations of step concerns for item-oriented approach.
Components for remote chunking.
Infrastructure implementations of repeat exception handler concerns.
Infrastructure implementations of repeat support concerns.
-
Uses of ExceptionHandler in org.springframework.batch.core.step.builder
Methods in org.springframework.batch.core.step.builder that return ExceptionHandlerModifier and TypeMethodDescriptionprotected ExceptionHandler
AbstractTaskletStepBuilder.getExceptionHandler()
Convenience method for subclasses to access the exception handler that was injected by user.Methods in org.springframework.batch.core.step.builder with parameters of type ExceptionHandlerModifier and TypeMethodDescriptionAbstractTaskletStepBuilder.exceptionHandler
(ExceptionHandler exceptionHandler) Sets the exception handler to use in the case of tasklet failures. -
Uses of ExceptionHandler in org.springframework.batch.core.step.factory
Methods in org.springframework.batch.core.step.factory that return ExceptionHandlerModifier and TypeMethodDescriptionprotected ExceptionHandler
SimpleStepFactoryBean.getExceptionHandler()
Protected getter for theExceptionHandler
.Methods in org.springframework.batch.core.step.factory with parameters of type ExceptionHandlerModifier and TypeMethodDescriptionvoid
SimpleStepFactoryBean.setExceptionHandler
(ExceptionHandler exceptionHandler) Public setter for theExceptionHandler
. -
Uses of ExceptionHandler in org.springframework.batch.core.step.item
Classes in org.springframework.batch.core.step.item that implement ExceptionHandlerModifier and TypeClassDescriptionclass
AnExceptionHandler
that is aware of the retry context so that it can distinguish between a fatal exception and one that can be retried.Constructors in org.springframework.batch.core.step.item with parameters of type ExceptionHandlerModifierConstructorDescriptionSimpleRetryExceptionHandler
(org.springframework.retry.RetryPolicy retryPolicy, ExceptionHandler exceptionHandler, Collection<Class<? extends Throwable>> fatalExceptionClasses) Create an exception handler from its mandatory properties. -
Uses of ExceptionHandler in org.springframework.batch.integration.chunk
Methods in org.springframework.batch.integration.chunk with parameters of type ExceptionHandlerModifier and TypeMethodDescriptionRemoteChunkingManagerStepBuilder.exceptionHandler
(ExceptionHandler exceptionHandler) -
Uses of ExceptionHandler in org.springframework.batch.repeat.exception
Classes in org.springframework.batch.repeat.exception that implement ExceptionHandlerModifier and TypeClassDescriptionclass
CompositeExceptionHandler
that loops though a list of delegates.class
Default implementation ofExceptionHandler
- just re-throws the exception it encounters.class
Implementation ofExceptionHandler
based on anClassifier
.class
Implementation ofExceptionHandler
that rethrows when exceptions of a given type reach a threshold.class
Simple implementation of exception handler which looks for given exception types.Methods in org.springframework.batch.repeat.exception with parameters of type ExceptionHandlerModifier and TypeMethodDescriptionvoid
CompositeExceptionHandler.setHandlers
(ExceptionHandler[] handlers) -
Uses of ExceptionHandler in org.springframework.batch.repeat.support
Methods in org.springframework.batch.repeat.support with parameters of type ExceptionHandlerModifier and TypeMethodDescriptionvoid
RepeatTemplate.setExceptionHandler
(ExceptionHandler exceptionHandler) Setter for exception handler strategy.