Commit Graph

59 Commits

Author SHA1 Message Date
nebhale
1d581663c2 [maven-release-plugin] prepare for next development iteration 2007-12-05 13:02:00 +00:00
nebhale
a0f7d3964a [maven-release-plugin] prepare release spring-batch-1.0.0.m3 2007-12-05 13:01:44 +00:00
nebhale
097ce6c296 Rolled back the M3 release. Need to remove branding from one of the samples 2007-12-05 11:55:41 +00:00
nebhale
9eef9f926d [maven-release-plugin] prepare for next development iteration 2007-12-04 21:57:07 +00:00
nebhale
84b202744f [maven-release-plugin] prepare release spring-batch-1.0.0-m3 2007-12-04 21:56:52 +00:00
nebhale
34b0ca7a23 [BATCH-246] Adjusted relative path to the parent POM 2007-12-04 12:07:17 +00:00
dsyer
f4504b070e IN PROGRESS - issue BATCH-244: Repeated processing of items does not work
http://opensource.atlassian.com/projects/spring/browse/BATCH-244

Fixed bug in ResourceLinereader that causes first chunk to be lost if it fails.
2007-12-04 09:15:21 +00:00
nebhale
246e952dde [BATCH-235] Created a parent POM to remove cycle in assembly creation 2007-12-03 15:55:28 +00:00
nebhale
d3b1a7abbe [BATCH-235] Remove test restriction on dependency 2007-11-30 12:59:10 +00:00
nebhale
116d6e7416 [BATCH-235] Updating the POMs to use the modular spring jars. Also a little polishing of the launch profiles. 2007-11-30 12:24:10 +00:00
nebhale
564b096cd2 A little Spring cleaning. Get it? 2007-11-30 09:35:25 +00:00
dsyer
0e24dd5e5d IN PROGRESS - BATCH-127: Allow job configuration to control re-entrant behavior
http://opensource.atlassian.com/projects/spring/browse/BATCH-127

Added additional exception to signature of JobRepository.findOrCreate().
2007-11-30 09:21:36 +00:00
dsyer
eebb1fd9fb RESOLVED - issue BATCH-218: StepConfiguration and JobConfiguration should not be BeanNameAware
http://opensource.atlassian.com/projects/spring/browse/BATCH-218
2007-11-30 09:15:37 +00:00
nebhale
bdb199760e JobInstance now creates JobExecutions instead of letting someone else. 2007-11-27 09:32:38 +00:00
dsyer
44463f393a RESOLVED - issue BATCH-199: ExceptionHandler in SImpleStepConfiguration ignored by SimpleStepConfigurationFactory
http://opensource.atlassian.com/projects/spring/browse/BATCH-199

Moved ExecptionHandler to the step operations.

It seemed to me that the responsibility for doing this should be encapsulated in the StepExecutor - also prevents a nasty package cycle.  The only way to do this and keep everyone honest was to add an applyConfiguration() method to the StepExecutor interface.  I am open to suggestion about how to do this more cleanly, but for now that is probably enough.
2007-11-23 15:45:00 +00:00
dsyer
d288c1fa8e add alternate bin dir for test classes 2007-11-07 08:48:33 +00:00
dsyer
82f753e18f Weird problem with eclipse build - was it just the .classpath entries not being exported? 2007-11-07 08:04:07 +00:00
dsyer
90196b9bfe IN PROGRESS - issue BATCH-159: JobExecutor should return a JobExecution (which itself contains the ExitStatus)
http://opensource.atlassian.com/projects/spring/browse/BATCH-159

Change JobExecutorFacade interface - it makes more sense to stop an execution.
2007-11-05 12:51:08 +00:00
dsyer
7f09f4214c IN PROGRESS - issue BATCH-159: JobExecutor should return a JobExecution (which itself contains the ExitStatus)
http://opensource.atlassian.com/projects/spring/browse/BATCH-159

Make sure JobExecution has an ID (it is saved before being passed back to client).
2007-11-03 13:51:56 +00:00
dsyer
0cf5cb4bb2 IN PROGRESS - issue BATCH-159: JobExecutor should return a JobExecution (which itself contains the ExitStatus)
http://opensource.atlassian.com/projects/spring/browse/BATCH-159

APIs all pretty much in place now - JobLauncher returns JobExecution from the run methods.  There is some polishing and test coverage work to do.
2007-11-03 11:18:00 +00:00
dsyer
3e72e7b565 Remove convenience accessor for job.getIdentifier() 2007-11-02 16:03:38 +00:00
dsyer
4a00848fce IN PROGRESS - issue BATCH-159: JobExecutor should return a JobExecution (which itself contains the ExitStatus)
http://opensource.atlassian.com/projects/spring/browse/BATCH-159

Refactored JobExecutorFacade into a package private interface - it's still useful in testing.
2007-11-02 12:29:18 +00:00
dsyer
48c5ddc41e IN PROGRESS - issue BATCH-159: JobExecutor should return a JobExecution (which itself contains the ExitStatus)
http://opensource.atlassian.com/projects/spring/browse/BATCH-159

Merged JobLauncher implementations together and separated out thread interruption and JMX notification responsibilities to separate collaborators.
2007-10-24 17:34:32 +00:00
dsyer
63c78f629a ##*&@$! Subclipse 2007-10-23 18:50:49 +00:00
dsyer
afe75ab8cc IN PROGRESS - issue BATCH-159: JobExecutor should return a JobExecution (which itself contains the ExitStatus)
http://opensource.atlassian.com/projects/spring/browse/BATCH-159

Move JobExecutionListener to core and add some Javadocs.
2007-10-23 18:45:32 +00:00
dsyer
82fdcd43ff IN PROGRESS - issue BATCH-159: JobExecutor should return a JobExecution (which itself contains the ExitStatus)
http://opensource.atlassian.com/projects/spring/browse/BATCH-159

Remove JobExecutionRegistry abstraction (not used).
2007-10-23 12:57:47 +00:00
dsyer
95f089a638 RESOLVED - issue BATCH-180: JobConfigurations do not get their names set if they are child beans
http://opensource.atlassian.com/projects/spring/browse/BATCH-180

Removed setName() from *Configuration - you have to use the bean id or setBeanName().
2007-10-21 15:10:52 +00:00
dsyer
b9c291328f RESOLVED - issue BATCH-121: BatchResourceFactoryBean - needs to be aware of JobIdentifier strategy
http://opensource.atlassian.com/projects/spring/browse/BATCH-121

Factored label generation out of job identifier into a separate strategy for resource factory
2007-10-14 08:07:44 +00:00
dsyer
9aac870ad8 IN PROGRESS - issue BATCH-121: BatchResourceFactoryBean - is it adding any value?
http://opensource.atlassian.com/projects/spring/browse/BATCH-121

Add getLabel() to JobIdentifier and use that to plug into the placeholder in the filename.
2007-10-11 15:40:55 +00:00
dsyer
4e736032c0 OPEN - issue BATCH-159: JobExecutor should return a JobExecution (which itself contains the ExitStatus)
http://opensource.atlassian.com/projects/spring/browse/BATCH-159
2007-10-10 08:56:11 +00:00
dsyer
24aa55f82d RESOLVED - issue BATCH-158: Dependency cycle between execution.step and execution.step.simple
http://opensource.atlassian.com/projects/spring/browse/BATCH-158

StepConfiguration had to pick up an extra flag in the interface, and the configuration implementations had to be separate from the executor implementations.

Also fixed a cycle in core (JobIdentifier is part of domain).
2007-10-05 09:12:42 +00:00
dsyer
9f77f722f9 RESOLVED - issue BATCH-158: Dependency cycle between execution.step and execution.step.simple
http://opensource.atlassian.com/projects/spring/browse/BATCH-158

StepConfiguration had to pick up an extra flag in the interface, and the configuration implementations had to be separate from the executor implementations.

Also fixed a cycle in core (JobIdentifier is part of domain).
2007-10-05 09:06:08 +00:00
dsyer
d59354b803 RESOLVED - issue BATCH-102: Normalization of domain object dependencies
http://opensource.atlassian.com/projects/spring/browse/BATCH-102

Removed StepExecution from StepInstance.
2007-10-02 18:08:11 +00:00
dsyer
7feb3bbc33 Removed throwable from StepExecution (it's not persisted anyway, but the ExitStatus is) 2007-10-01 06:35:40 +00:00
dsyer
9d44d8f455 OPEN - issue BATCH-90: StepExecution and StepExecutionContext are parallel domains, and StepExecution is by comparison anaemic
http://opensource.atlassian.com/projects/spring/browse/BATCH-90

Add ExitStatus to *Execution entities
2007-09-30 21:16:44 +00:00
dsyer
484961f5ab OPEN - issue BATCH-90: StepExecution and StepExecutionContext are parallel domains, and StepExecution is by comparison anaemic
http://opensource.atlassian.com/projects/spring/browse/BATCH-90

Remove jobId field from JobExecution
2007-09-30 16:41:29 +00:00
dsyer
7f7959f1fa Subclipse missed this one... 2007-09-30 16:28:56 +00:00
dsyer
b837b9d28e OPEN - issue BATCH-90: StepExecution and StepExecutionContext are parallel domains, and StepExecution is by comparison anaemic
http://opensource.atlassian.com/projects/spring/browse/BATCH-90

Remove *ExecutionContext by merging with *Execution
2007-09-30 16:20:38 +00:00
dsyer
f1858a2406 OPEN - issue BATCH-90: StepExecution and StepExecutionContext are parallel domains, and StepExecution is by comparison anaemic
http://opensource.atlassian.com/projects/spring/browse/BATCH-90

Remove setter for job id in JobExecution
2007-09-30 12:02:14 +00:00
dsyer
33e63bc5dd OPEN - issue BATCH-90: StepExecution and StepExecutionContext are parallel domains, and StepExecution is by comparison anaemic
http://opensource.atlassian.com/projects/spring/browse/BATCH-90

Javadocs and package private constructor
2007-09-30 11:55:56 +00:00
dsyer
741371d9f0 OPEN - issue BATCH-90: StepExecution and StepExecutionContext are parallel domains, and StepExecution is by comparison anaemic
http://opensource.atlassian.com/projects/spring/browse/BATCH-90

Missing link in javadocs
2007-09-30 11:51:04 +00:00
dsyer
a2c03d271a OPEN - issue BATCH-90: StepExecution and StepExecutionContext are parallel domains, and StepExecution is by comparison anaemic
http://opensource.atlassian.com/projects/spring/browse/BATCH-90

Tidy the JobInstance up a bit (no need for setter of identifier)
2007-09-30 11:48:07 +00:00
dsyer
d909f4c43e Tidy up some javadocs 2007-09-29 12:12:01 +00:00
dsyer
420b51553e Remove clover dependency 2007-09-28 07:10:34 +00:00
nebhale
b91e9f92d8 [maven-release-plugin] prepare for next development iteration 2007-09-27 15:32:05 +00:00
nebhale
e03e7ca643 [maven-release-plugin] prepare release spring-batch-1.0-m2 2007-09-27 15:31:55 +00:00
lucasward
5c202674a0 CLOSED - issue BATCH-136: restoreFromRestartData(Tasklet, RestartData) crashes if Properties are null
http://opensource.atlassian.com/projects/spring/browse/BATCH-136
2007-09-20 21:07:39 +00:00
lucasward
4292897432 OPEN - issue BATCH-136: restoreFromRestartData(Tasklet, RestartData) crashes if Properties are null
http://opensource.atlassian.com/projects/spring/browse/BATCH-136

Fixed StepInstance to no longer pass null to GenericRestartData()
2007-09-20 18:34:48 +00:00
lucasward
7ddb692cef OPEN - issue BATCH-24: Provide exit code for job executed as a main method
http://opensource.atlassian.com/projects/spring/browse/BATCH-24
2007-09-18 07:41:16 +00:00
dsyer
d83d9997e2 Refactor some dependencies to make it easier to change versions 2007-09-16 17:41:46 +00:00