1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.springframework.batch.sample.common;
18
19 import javax.sql.DataSource;
20
21 import org.springframework.batch.core.listener.StepListenerSupport;
22 import org.springframework.batch.item.ItemReader;
23 import org.springframework.beans.factory.InitializingBean;
24 import org.springframework.dao.OptimisticLockingFailureException;
25 import org.springframework.jdbc.core.JdbcOperations;
26 import org.springframework.jdbc.core.JdbcTemplate;
27 import org.springframework.util.Assert;
28
29
30
31
32
33 public class StagingItemListener extends StepListenerSupport<Long, Long> implements InitializingBean {
34
35 private JdbcOperations jdbcTemplate;
36
37 public void setDataSource(DataSource dataSource) {
38 jdbcTemplate = new JdbcTemplate(dataSource);
39 }
40
41 public final void afterPropertiesSet() throws Exception {
42 Assert.notNull(jdbcTemplate, "You must provide a DataSource.");
43 }
44
45 @Override
46 public void afterRead(Long id) {
47 int count = jdbcTemplate.update("UPDATE BATCH_STAGING SET PROCESSED=? WHERE ID=? AND PROCESSED=?",
48 StagingItemWriter.DONE, id, StagingItemWriter.NEW);
49 if (count != 1) {
50 throw new OptimisticLockingFailureException("The staging record with ID=" + id
51 + " was updated concurrently when trying to mark as complete (updated " + count + " records.");
52 }
53 }
54
55 }