Commit Graph

1446 Commits

Author SHA1 Message Date
dsyer
3ff83c11b5 update version number in docs 2008-05-06 14:13:41 +00:00
robokaso
8a373d3f4e RESOLVED - BATCH-609: All schemas have a datatype of varchar for LONG_VAL instead of BIGINT 2008-05-05 09:34:35 +00:00
robokaso
7cbda13d0a RESOLVED - BATCH-608: JobExecutionListener.onInterrupt() is never called by spring batch framework 2008-05-05 08:46:06 +00:00
dsyer
0ff7c3bfe9 [BATCH-611] Added export to manifest 2008-05-04 12:13:50 +00:00
lucasward
6805ce4b0e BATCH-605:Added an extra section about archiving and some misc. changes from review with Wayne. 2008-05-02 23:12:32 +00:00
lucasward
6c15a59a3e BATCH-610:StaxEventItemReader didn't close correctly either, and the test for single column driving query wasn't passing through close calls. 2008-05-02 15:51:40 +00:00
lucasward
68092549bd BATCH-610:JdbcCursorItemReader can now be closed and opened again without issue. 2008-05-02 15:12:00 +00:00
lucasward
4e59bf9b84 BATCH-605:Added an new appendix that describes the meta-data table schema in detail. 2008-05-01 05:07:12 +00:00
robokaso
7be9bc6823 javadoc fix (task -> item) 2008-04-29 14:02:55 +00:00
nebhale
596ef3518b Branched for 1.1.0 2008-04-28 08:10:52 +00:00
lucasward
66e91b0dbe BATCH-604:JdbcStepExecutionDao will now deserialize object correctly. 2008-04-25 20:13:31 +00:00
robokaso
0113be7585 RESOLVED - BATCH-601: Findbugs code audit 2008-04-24 15:37:34 +00:00
robokaso
d26907b497 IN PROGRESS - BATCH-601: Findbugs code audit 2008-04-24 15:06:59 +00:00
robokaso
0f7b4dc6e0 IN PROGRESS - BATCH-601: Findbugs code audit 2008-04-24 15:00:43 +00:00
robokaso
8f90970a08 IN PROGRESS - BATCH-601: Findbugs code audit 2008-04-24 14:23:42 +00:00
robokaso
a66bbd69c9 IN PROGRESS - BATCH-601: Findbugs code audit 2008-04-24 14:02:39 +00:00
dsyer
11b094298d [BATCH-582] Add width= to imagedata where necessary 2008-04-24 12:28:39 +00:00
robokaso
a0aec04e57 removed broken reference to pom.xml 2008-04-24 08:41:30 +00:00
robokaso
2ff24339be RESOLVED - BATCH-596: Create changelog for 1.0.1
linked changelog from site
2008-04-24 08:36:32 +00:00
lucasward
c973e8215a BATCH-598:Tidied up the reference docs. 2008-04-22 21:55:22 +00:00
lucasward
87e004bd30 BATCH-583:Fixed images in PDF 2008-04-22 18:29:59 +00:00
dsyer
c1422013be Tidy up old terminology in use cases. 2008-04-22 15:31:22 +00:00
robokaso
5c6b37ecc3 RESOLVED - BATCH-85: Many warnings in Javadocs (e.g. missing links and parameter names)
cleaned up the samples module
2008-04-22 11:53:33 +00:00
robokaso
e3fff37d41 IN PROGRESS - BATCH-85: Many warnings in Javadocs (e.g. missing links and parameter names)
cleaned up the integration module
2008-04-22 11:47:01 +00:00
robokaso
75111fbe01 RESOLVED - BATCH-595: Incorrect JDBC type for job parameters of long type
used Types.BIGINT instead of Types.INTEGER for Long values
2008-04-22 11:24:49 +00:00
dsyer
1c8df0d5f5 wrong description of scope of execution context 2008-04-22 09:26:10 +00:00
robokaso
7e41ff0381 IN PROGRESS - BATCH-85: Many warnings in Javadocs (e.g. missing links and parameter names)
cleaned up infrastructure module
2008-04-22 09:26:10 +00:00
robokaso
91e5467279 IN PROGRESS - BATCH-85: Many warnings in Javadocs (e.g. missing links and parameter names)
cleaned up the core module
2008-04-22 08:16:20 +00:00
lucasward
447997a5bc BATCH-599:Added additional content to the section on TaskletStep 2008-04-22 02:43:05 +00:00
dsyer
75434bd244 OPEN - issue BATCH-574: BatchMessageListernerContainer needs to have transaction boundaries defined around batching
Remove unnecessary clutter from BatchMessageListernerContainer (it's only really necessary to override two methods)
2008-04-21 14:09:55 +00:00
robokaso
90df52ac55 RESOLVED - BATCH-593: Calling update before read on DrivingQueryItemReader causes ArrayIndexOutOfBoundsError
fixed bug and tested the scenario for all ItemReaders
2008-04-21 08:05:43 +00:00
dsyer
b0fb4167dc OPEN - issue BATCH-574: BatchMessageListernerContainer needs to have transaction boundaries defined around batching
Add integration test.
2008-04-21 07:26:52 +00:00
dsyer
ca88c5693a updgrade to spring-oxm 1.0.4 to avoid pom issue 2008-04-20 09:15:31 +00:00
robokaso
8326f540a7 RESOLVED - BATCH-577: JdbcCursorItemReader doesn't work with Derby
isolated the problematic ResultSet#getRow() call to be used only for cursor position verification and added javadoc to disable the verification when used with Derby
2008-04-17 09:27:34 +00:00
robokaso
73227ce6e6 updated out-of-date javadocs 2008-04-16 14:26:17 +00:00
robokaso
f9d97f5a3b RESOLVED - BATCH-589: StepExecutionResourceProxy's toString() leads to NPE
toString returns filePattern if delegate is null
2008-04-16 13:14:00 +00:00
robokaso
eb67e73ab0 replaced StringBuilder with StringBuffer to fix samples-14 build (I though using StringBuilder outside samples was ok?) 2008-04-16 13:00:14 +00:00
robokaso
cbad1565d3 RESOLVED - BATCH-590: broken rollback/buffering in JdbcCursorItemReader
fixed the buffering issue and added a more thorough rollback test for all readers
2008-04-16 12:41:54 +00:00
robokaso
3d30a64f0b RESOLVED - BATCH-589: StepExecutionResourceProxy's toString() leads to NPE
added assertion delegate is not null in toString (similar to other methods) and removed the toString usage in FlatFileItemReader#setResource
2008-04-16 08:09:50 +00:00
robokaso
33ab740a1f OPEN - BATCH-587: Validation : add error object in ValidationException
richer exception messages in SpringValidator + cleaned up the implementation a bit
2008-04-15 13:30:32 +00:00
robokaso
0c40ce5141 RESOLVED - BATCH-578: remove self-initialization from ItemReader#read() implementations 2008-04-14 09:10:17 +00:00
dsyer
60c8015009 Updated use cases a bit to be clear about scope for 1.0 2008-04-13 06:52:57 +00:00
dsyer
8a023b6c5c [BATCH-579] Remove redundant IOException 2008-04-11 21:19:49 +00:00
lucasward
f162c1bd21 BATCH-508: Added default values to ExecutionContext 2008-04-11 20:26:20 +00:00
dsyer
eb518799cf Remove use of deprecated constructor 2008-04-11 07:04:33 +00:00
robokaso
70d1098844 ad-hoc try to fix the CI build (can't reproduce the failure) 2008-04-10 14:25:27 +00:00
robokaso
9937a4c703 removed temporary test suite 2008-04-10 14:19:02 +00:00
robokaso
c7d2a7e8bf RESOLVED - BATCH-396: jdbc and map daos should share tests 2008-04-10 14:07:52 +00:00
dsyer
3e787fb680 Tidied up javadocs in UnexpecteJobExecutionException and deprecated less informative constructors. 2008-04-10 08:52:00 +00:00
robokaso
5ff2e320bc RESOLVED - BATCH-522: abstract common concerns from BatchSqlUpdateItemWriter and HibernateAwareItemWriter
duplicate logic pulled up to AbstractTransactionalResourceItemWriter
2008-04-09 09:39:53 +00:00