Example usage for org.springframework.batch.item.database AbstractPagingItemReader subclass-usage

List of usage examples for org.springframework.batch.item.database AbstractPagingItemReader subclass-usage

Introduction

In this page you can find the example usage for org.springframework.batch.item.database AbstractPagingItemReader subclass-usage.

Usage

From source file org.mybatis.spring.batch.MyBatisPagingItemReader.java

/**
 * {@code org.springframework.batch.item.ItemReader} for reading database
 * records using MyBatis in a paging fashion.
 * <p>
 * Provided to facilitate the migration from Spring-Batch iBATIS 2 page item readers to MyBatis 3.
 *

From source file org.wallride.job.UpdatePostViewsItemReader.java

@Component
@StepScope
public class UpdatePostViewsItemReader extends AbstractPagingItemReader<List> {

    @Inject
    private BlogService blogService;