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

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

Refactor JobRepository.findOrCreateJob() to return JobExecution.
This commit is contained in:
dsyer
2007-12-11 18:10:20 +00:00
parent cb1a02bb9f
commit 5fa4ffc3b2
31 changed files with 296 additions and 157 deletions

View File

@@ -34,7 +34,7 @@ CREATE TABLE PLAYERS (
);
CREATE TABLE GAMES (
PLAYER_ID char(8) not null PRIMARY KEY,
PLAYER_ID char(8) not null,
YEAR ${BIGINT} not null,
TEAM char(3) not null,
WEEK ${BIGINT} not null,
@@ -52,7 +52,7 @@ CREATE TABLE GAMES (
);
CREATE TABLE PLAYER_SUMMARY (
ID CHAR(8) NOT NULL PRIMARY KEY,
ID CHAR(8) NOT NULL,
YEAR ${BIGINT} NOT NULL,
COMPLETES ${BIGINT} NOT NULL ,
ATTEMPTS ${BIGINT} NOT NULL ,