Class PlayerItemWriter
- java.lang.Object
- org.springframework.batch.sample.domain.football.internal.PlayerItemWriter
- All Implemented Interfaces:
ItemWriter<Player>
public class PlayerItemWriter extends java.lang.Object implements ItemWriter<Player>
Constructor Summary
Constructors Constructor Description PlayerItemWriter()
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidsetPlayerDao(PlayerDao playerDao)voidwrite(java.util.List<? extends Player> players)Process the supplied data element.
Method Detail
write
public void write(java.util.List<? extends Player> players) throws java.lang.Exception
Description copied from interface:ItemWriterProcess the supplied data element. Will not be called with any null items in normal operation.- Specified by:
writein interfaceItemWriter<Player>- Parameters:
players- items to be written- Throws:
java.lang.Exception- if there are errors. The framework will catch the exception and convert or rethrow it as appropriate.
setPlayerDao
public void setPlayerDao(PlayerDao playerDao)