PARAMS « Batch « Spring Q&A





1. Inserted params in job_params table ... make no sense    stackoverflow.com

I'm launching a job with 3 parameters : - key, timestamp - dateDeb, start date - resource-input-path, an absolute path to a file The shell to launch the batch :

#!/bin/bash
JVM_ARGS="-Xmx256m -XX:MaxPermSize=256m"
START_DATE=`date +"%Y%m%d%H%M"`
BATCH_DATE=`date +"%Y-%m-%d"`
echo "Batch de ...

2. Expanding BATCH_JOBS_PARAMS.STRING_VAL    forum.springsource.org

Hi, I am using spring-batch 2.1.3-RELEASE and JdbcJobInstanceDao as JobInstanceDAO. I encounter a problem using parameters of length > 250 as the property STRING_VAL of the table BATCH_JOBS_PARAMS is limited to ...

3. Logging complete file name in BATCH_JOB_PARAMS table    forum.springsource.org

Hi Guys, I am passing file name as job parameter like file:/test/PO_TR_*.TXT . In database this is getting logged as same. But I want to log the complete file name like ...

4. Incorrect datetime value error when inserting String parameter into batch_job_params    forum.springsource.org

Incorrect datetime value error when inserting String parameter into batch_job_params I'm passing one String parameter to a job, and when Spring Batch attempts to insert a job parameter record into BATCH_JOB_PARAMS ...

5. how to run same batch job with same params twice    forum.springsource.org

how to run same batch job with same params twice I have a batch job which has the name of the file that is going to be processed as a late ...