IN PROGRESS - issue BATCH-127: Allow job configuration to control re-entrant behavior

http://opensource.atlassian.com/projects/spring/browse/BATCH-127

SimpleJobRepository.findOrCreateJob now blocks if the transaction isolation level is high enough (see Javadocs).
This commit is contained in:
dsyer
2007-12-15 15:25:11 +00:00
parent 92d72468fa
commit f49c9d9526
11 changed files with 171 additions and 70 deletions

View File

@@ -232,7 +232,7 @@ public class JobExecution extends Entity {
* @see org.springframework.batch.core.domain.Entity#toString()
*/
public String toString() {
return super.toString()+", job=["+job+"]";
return super.toString()+", startTime="+startTime+", endTime="+endTime+", job=["+job+"]";
}
/**