Michael Minella
b8479493bd
BATCH-2062: Added ChunkProcessor implementations to support JSR-352's chunking pattern
...
* Added the JsrChunkProvider implementation - a no-op ChunkProvider implementation to be used by the ChunkOrientedTasklet
* Added the JsrChunkProcessor - A simple implementation of a ChunkProcessor that handles the JSR-352 chunking pattern (read and process loop with a single write per chunk).
* Added the JsrFaultTolerantChunkProcessor - A ChunkProcessor that implements chunking the way JSR-352 requires as well as adding skip/retry functionality.
* Added builders to support the above functionality.
2013-08-09 18:05:40 -05:00
Michael Minella
775dd15be1
BATCH-2004: Added basic wrappers for the the majority of batch artifacts.
2013-07-29 09:15:53 -05:00
Michael Minella
7e85b50616
Merge conflict
2013-07-26 17:00:05 -05:00
jpraet
3553d244e2
BATCH-2038: DerbyPagingQueryProvider does not work with Derby
...
10.10.1.1
2013-07-26 11:20:33 -05:00
jpraet
eae42d80d3
BATCH-2050: AbstractItemCountingItemStreamItemReader.read() shouldn't
...
be final
2013-07-17 12:26:30 -05:00
jpraet
d78454361c
BATCH-1849: Item was not picked up after restarting a failed job!!!
2013-07-15 14:46:47 -05:00
jpraet
36e3bda486
BATCH-2052: StaxEventItemWriter should only force sync once per chunk
2013-07-15 13:47:33 -05:00
jpraet
a4c00d9b78
BATCH-1984: CompositeItemProcessor.setDelegates argument has limiting
...
generic type
2013-07-12 17:52:57 -05:00
jpraet
a65bcc48d1
BATCH-2054: StaxEventItemWriter fails on a NullPointerException with
...
Spring OXM 3.2.x.
2013-07-12 15:50:09 -05:00
Michael Minella
a939b194fe
Merged pull request #195 from stephlag/patch-1
2013-07-11 16:20:49 -05:00
willschipp
42dccf6efb
Merge pull request #176 from willschipp/BATCH-1811
...
- Fixed javadoc grammer and syntax
2013-06-10 12:07:01 -05:00
jpraet
9319639c4e
Merge pull request #168 from jpraet/BATCH-2018
2013-06-07 17:41:55 -05:00
Michael Minella
4a32a9c953
BATCH-2031: Addressed the use case of overlapping delimiters
2013-06-04 10:23:17 -05:00
Dave Syer
3f1d56be43
Fix javadoc error
2013-05-06 09:42:02 +01:00
qwazer
6487b030fa
fix typo delgates->delegates
2013-04-29 11:51:38 -05:00
Michael Minella
903f5060fb
BATCH-1995: Updated to handle delimitors at the beginning and end of a line
2013-04-20 23:34:52 -05:00
Michael Minella
860d9dae21
Updated documentation for 2.2.0.RC1 release
2013-04-08 13:45:41 -05:00
Chris Schaefer
36919f8706
BATCH-1946: Signs of failed merge in HibernateItemWrite (and others?)
2013-03-25 09:32:50 -05:00
Chris Schaefer
082c81765f
BATCH-1968: Upgrade to hsqldb 2.2.9
2013-03-21 10:31:52 -05:00
Michael Minella
f01ef38e98
BATCH-1959: Fixed whitespace issues
2013-03-21 10:08:12 -05:00
jpraet
215d47182e
fix assertion (see BATCH-1957: WRITTEN_STATISTICS_NAME in execution
...
context now contains TOTAL number of records written)
2013-03-21 10:02:43 -05:00
jpraet
eb163b7608
add additional tests with UTF-8 and UTF-16BE encoding
2013-03-21 10:02:43 -05:00
jpraet
47ef986be7
BATCH-1959
2013-03-21 10:00:17 -05:00
Michael Minella
00f1d31127
BATCH-1957: Updated comments
2013-03-20 10:36:06 -05:00
jpraet
c65ec97474
- restore WRITE_STATISTICS_NAME from execution context on restart
...
- don't assume output file is always present on restart (could be
deleted by previous execution if shouldDeleteIfEmpty flag was set)
2013-03-20 09:54:53 -05:00
jpraet
44d640990d
add additional test case that shows a bug in the current
...
StaxEventItemWriter.shouldDeleteIfEmpty: when the writer restarts from a
previous execution where the output file was deleted, this fails because
FileUtils.setUpOutputFile expects the file to be there on restart
2013-03-20 09:52:44 -05:00
jpraet
3f2aa18460
add unit test test showing bug in FlatFileItemWriter: output file is
...
deleted on restart if shouldDeleteIfEmpty property is set and no new
records have been written
2013-03-20 09:52:44 -05:00
jpraet
538d7b1abb
BATCH-1957: Add StaxEventItemWriter deleteIfEmpty property
2013-03-20 09:52:44 -05:00
Michael Minella
c993e4c4e7
BATCH-1906: Fixed documentation and whitespace
2013-03-04 18:08:37 -06:00
jpraet
6e7b290727
BATCH-1906: add support to access an item's line number
2013-03-04 17:47:40 -06:00
Michael Minella
0c224009b9
BATCH-1972: Fixed some whitespace issues
2013-03-04 17:21:50 -06:00
jpraet
f7a88902ed
BATCH-1972: StaxEventItemReader fails when restarted at end of file
2013-03-04 16:50:42 -06:00
Michael Minella
39c5e221f8
BATCH-1975: Minor cleanup
2013-03-04 16:18:22 -06:00
jpraet
3f12a0f9a4
BATCH-1975: StaxEventItemWriter namespace added to elements after
...
restart
2013-03-04 15:14:53 -06:00
Michael Minella
aedf03fad0
BATCH-1966: Some minor cleanup
2013-03-04 14:08:19 -06:00
Dean de Bree
958d7c89a5
Added method to replace old setName method.
2013-03-04 09:15:16 -06:00
Dean de Bree
d1b84f3e2f
Added ExecutionContextUserSupport to the ItemStream Support class
...
Changed child classes to use this shared object
Changed some classes that previously extended ExecutionContextUserSupport
to rather use the same common parent class as everything else.
Changes all for issue BATCH-1966
2013-03-04 09:15:16 -06:00
Michael Minella
11add37b5c
BATCH-1856: Initial implementation of the getParentLogger method
2013-03-01 12:09:03 -06:00
Michael Minella
408de3c75f
BATCH-1955: Removed requirement to inject ItemSqlParamterSourceProvider when using Map's for an item
2013-03-01 11:54:00 -06:00
willschipp
5706813b02
addition of transacted value to JpaPagingItemReader
2013-02-28 21:01:24 -05:00
David Turanski
e4095ab26b
added GemfireItemWriter
2013-02-28 11:02:40 -06:00
Michael Minella
46cedbdc3d
BATCH-1728: Added some documentation in the AbstractPaginatedDataItemReader and fixed the message in the RepositoryItemWriter
2013-02-19 10:33:06 -06:00
Michael Minella
91deb12a83
BATCH-1728: Initial commit of Spring Data ItemReader/ItemWriter implementations
2013-02-19 10:33:06 -06:00
Dean de Bree
1b9d477386
Cleaned up some interface references
2013-02-19 09:24:47 -06:00
Will Schipp
7e1e66d677
migration from EasyMock to Mockito
2013-02-10 14:30:57 +00: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
e0667121f5
Removing unnecessiceary @Depricated degisgnation
2013-01-10 08:21:55 -06:00
Dave Syer
d0f8772a60
Fix some javadoc errors
2013-01-10 10:37:02 +00: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