Commit Graph

840 Commits

Author SHA1 Message Date
Wayne Lund
a7a30cf2ea Fixed samples ioSamples table, and added AmqpItemReader/Writer descriptions. Also
fixed some misspellings while reviewing sections for jsr-352 and added AmqpItemReader/Writer
to Appendix A - Inventory.
2013-02-05 15:58:44 -08:00
Michael Minella
557515df45 BATCH-1412: Implementing non-identifying job parameters 2013-02-05 17:39:12 +00:00
Dave Syer
a871d0b80f Move gemstone repo declarations to samples 2013-02-05 15:06:36 +00:00
Michael Minella
51e0e65063 [maven-release-plugin] prepare for next development iteration 2013-01-24 14:01:10 -06:00
Michael Minella
32af6556e3 [maven-release-plugin] prepare release 2.2.0.M1 2013-01-24 14:01:04 -06:00
Michael Minella
ca9d00d1a2 Updated to support new 2.2 schema 2013-01-24 13:03:41 -06:00
Michael Minella
cc370d9ac5 [maven-release-plugin] prepare for next development iteration 2013-01-23 09:54:38 -06:00
Michael Minella
b77d1a28e1 [maven-release-plugin] prepare release 2.2.0.M1 2013-01-23 09:54:30 -06:00
Dave Syer
bc9ee74a25 BATCH-1950: Patch up build
* Ensure bundlor is available and remove from sample
* Tidy dependencies in some poms
* Update some template.mf dependencies
* Add .travis.yml for automated builds independent of bamboo
2013-01-18 13:46:02 +00:00
Michael Minella
c097055288 Removing redundant dependency on JPA 1.0 jar to fix integration test 2013-01-09 11:00:14 -06:00
Michael Minella
24e662bb69 BATCH-1904: Removed System.out 2012-12-31 09:08:57 -06:00
Michael Minella
6955ab1d6b BATCH-1904: Updated to support Hibernate 4 2012-12-31 09:08:57 -06:00
Chris Schaefer
a6ab68bbbb BATCH-1940: Replace org.springframework.batch.support.JdbcTestUtils with org.springframework.test.jdbc.JdbcTestUtils 2012-12-31 08:35:06 -06:00
Chris Schaefer
dfe13ed07d BATCH-1939: Minor cleanups to AMQP sample 2012-12-21 18:53:20 -05:00
Michael Minella
95ccb1a229 BATCH-1920 - Corrected pom and removed unused reference to JdbcTemplate 2012-12-18 13:46:10 -06:00
wxlund
96f870af4f And now commit with the files that have been added for the sample. 2012-12-18 13:21:32 -06:00
wxlund
bfb406a1cf Provided a sample to support AmqpItemReader/Writer addition to spring-batch-2.2. 2012-12-18 13:21:32 -06:00
wxlund
0d7bf2cd71 Modified core to support drop and schema-sqlf.sql but leverages derby syntax outside of connection string.
Modified *.properties file to add additional property "batch.isolationlevel=ISOLATION_SERIALIZABLE
because batch-sqlf.properties needs batch.isolationlevel=ISOLATION_READ_COMMITTED.
Added corresponding sqlf properties and sqlf files.
Modified simple-job-launcher-context.xml to support the p:isolationLevelForCreate="${batch.isolationlevel}"
2012-12-18 13:21:32 -06:00
Dave Syer
25cd6d6826 BATCH-1918: First effort at @EnableBatchProcessing
Example:

    @Configuration
    @EnableBatchProcessing
    public class RetrySampleConfiguration {

      @Autowired
      private JobBuilderFactory jobs;

      @Autowired
      private StepBuilderFactory steps;

      @Bean
      public Job retrySample() throws Exception {
        return jobs.get("retrySample").start(step()).build();
      }

      @Bean
      protected Step step() throws Exception {
        return steps.get("step").<Trade, Object> chunk(1).reader(reader()).writer(writer()).faultTolerant()
          .retry(Exception.class).retryLimit(3).build();
      }

      @Bean
      protected ItemReader<Trade> reader() {
        GeneratingTradeItemReader reader = new GeneratingTradeItemReader();
        reader.setLimit(10);
        return reader;
      }

      @Bean
      protected ItemWriter<Object> writer() {
        return new RetrySampleItemWriter<Object>();
      }

    }
2012-12-17 14:17:48 -06:00
Michael Minella
40975b6548 BATCH-1928: Converted to using JdbcOperations over JdbcTemplate 2012-12-17 09:16:30 -06:00
Chris Schaefer
bdece6640c BATCH-1928: Convert deprecated classes from the org.springframework.jdbc.core.simple package in samples 2012-12-17 08:53:17 -06:00
Chris Schaefer
18d923d6ea BATCH-1919: Switch to using <jdbc:/> namespace in samples 2012-12-16 13:32:41 -05:00
Dave Syer
f63f67c65a BATCH-1913: Add step builders 2012-12-04 18:12:20 +00:00
Michael Minella
1cf9573679 BATCH-1749: Updated for sorts to be more intuitive 2012-11-05 10:29:15 -06:00
Michael Minella
12d9918289 BATCH-1749: JdbcPagingItemReader now supports multi-column keys 2012-11-02 15:01:43 -05:00
Dave Syer
5410e076a8 BATCH-1685: fix broken dependeny on spring-oxm 2012-09-24 16:34:02 +01:00
Chris Schaefer
d512ba8ff2 BATCH-1685: Upgrade minimum support level for Spring to 3.1.2 2012-09-12 06:08:36 +01:00
Dave Syer
7476ac1628 Upgrade site plugin and ensure tables parse correctly 2012-08-28 10:44:04 +01:00
Dave Syer
f23ff4228b Update versions to 2.2.0 2012-08-21 09:34:09 +01:00
Dave Syer
19ba21625f [maven-release-plugin] prepare for next development iteration 2012-07-27 14:09:11 +01:00
Dave Syer
d957090dae [maven-release-plugin] prepare release 2.1.9.RELEASE 2012-07-27 14:09:10 +01:00
Dave Syer
2e44e0daca Update version label for 2.1.9 release (2.2 is now a branch) 2012-06-20 14:08:17 +01:00
Gary Russell
1ce4cb1e95 BATCH-1837 Spring 3 Compatibility
Update profile to Spring 3.0.7; fix compile issues in 2
tests.
2012-02-21 19:53:49 -05:00
Dave Syer
7d0e055da2 BATCH-1776: remove extra dependency declaration 2011-12-08 18:18:38 +00:00
Dave Syer
4ee71325aa Add pom voodoo for STS 2.8 2011-11-17 12:44:33 +00:00
Dave Syer
478f3e45b4 Move launchers back from deleted .settings 2011-11-17 10:33:57 +00:00
Dave Syer
cb51f363ca Remove Eclipse meta data completely 2011-11-17 09:56:28 +00:00
Dave Syer
7f971b85c8 Update Eclipse meta data for STS 2.8 2011-11-17 09:54:29 +00:00
Dave Syer
cc6d5bbaa6 [maven-release-plugin] prepare for next development iteration 2011-05-13 13:15:33 +01:00
Dave Syer
86a044bc6c [maven-release-plugin] prepare release 2.1.8.RELEASE 2011-05-13 13:15:24 +01:00
Dave Syer
7e62da9b59 Clarify download locations 2011-05-11 12:08:06 +01:00
Dave Syer
2ea45451e5 Fix pointcut in logging advice 2011-04-26 09:10:38 +01:00
Dave Syer
58716a2d51 Remove oracle dependency 2011-03-21 15:55:57 +00:00
Dave Syer
f4d8968eba [maven-release-plugin] prepare for next development iteration 2011-03-21 14:44:58 +00:00
Dave Syer
7c860f90b3 [maven-release-plugin] prepare release 2.1.7.RELEASE 2011-03-21 14:44:48 +00:00
Dave Syer
539c403031 BATCH-1532: add profiles for spring oxm 2011-03-21 13:30:35 +00:00
Dave Syer
45996da55e Wind back version number in master 2011-03-11 13:13:51 +00:00
Dave Syer
d717027cdf [maven-release-plugin] prepare for next development iteration 2011-02-07 10:18:47 +00:00
Dave Syer
f4e5dbcc72 [maven-release-plugin] prepare release X.2.1.6.RELEASE 2011-02-07 10:18:35 +00:00
Dave Syer
2522d6c03b Remove unused input files 2011-01-14 09:44:43 +00:00