Advertisement
Guest User

Untitled

a guest
Apr 27th, 2015
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. @Component("pricereader")
  2. public class MyItemReader implements ItemReader<Price>{
  3.  
  4. @Override
  5. public Price read() throws Exception, UnexpectedInputException, ParseException,
  6. NonTransientResourceException {
  7. // TODO Auto-generated method stub
  8. return null;
  9. }
  10.  
  11. <batch:job id="job1">
  12. <batch:step id="step1">
  13. <batch:tasklet>
  14. <batch:chunk reader="pricereader" processor="priceprocessor" writer="pricewriter" commit-interval="1"/>
  15. </batch:tasklet>
  16. </batch:step>
  17. </batch:job>
  18.  
  19. private Scanner scanner;
  20. public MyItemReader(String filepath){
  21. //initializing scanner
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement