Example usage for org.springframework.batch.core.listener ItemListenerSupport subclass-usage

List of usage examples for org.springframework.batch.core.listener ItemListenerSupport subclass-usage

Introduction

In this page you can find the example usage for org.springframework.batch.core.listener ItemListenerSupport subclass-usage.

Usage

From source file org.seedstack.spring.batch.sample.listeners.ContactFailureLoggerListener.java

@SuppressWarnings("rawtypes")
@Component("failureLoggerListener")
public class ContactFailureLoggerListener extends ItemListenerSupport {
    private static final Logger logger = LoggerFactory.getLogger(ContactFailureLoggerListener.class);

    public void onReadError(final Exception ex) {

From source file com.manning.siia.batch.PaymentChunkListener.java

/**
 * @author Marius Bogoevici
 */
public class PaymentChunkListener extends ItemListenerSupport<Payment, Payment> {

    @Autowired

From source file org.springframework.batch.core.step.item.DefaultItemFailureHandler.java

/**
 * Default implementation of the {@link ItemListenerSupport} class that
 * writes all exceptions via commons logging. Since generics can't be used to
 * ensure the list contains exceptions, any non exceptions will be logged out by
 * calling toString on the object.
 * 

From source file org.springframework.batch.integration.samples.payments.PaymentChunkListener.java

public class PaymentChunkListener extends ItemListenerSupport<Payment, Payment> {

    private static final Log logger = LogFactory.getLog(PaymentChunkListener.class);

    @Autowired
    @Qualifier("chunkExecutions")