mybatis / spring

Spring integration for MyBatis 3

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Apply API change of ItemWriter on Spring Batch 5.0

kazuki43zoo opened this issue · comments

In Spring Batch 5.0, ItemReader has been changed method signatures.

Before:

public void write(List<W> items);

After:

public void write(Chunk<W> items);