Attempted at launching a job through jobLauncher from another spring batch job
Job job = jobRegistry.getJob(jobName);
JobExecution syncJobExecution = jobLauncher.run(job, syncJp);
...
Type: Posts; User: jagaranga; Keyword(s):
Attempted at launching a job through jobLauncher from another spring batch job
Job job = jobRegistry.getJob(jobName);
JobExecution syncJobExecution = jobLauncher.run(job, syncJp);
...
I'm facing a similar situation in my test case. My test environment:
* @TransactionConfiguration - maintains transaction for the test cases
* Use both JDBCTemplate and sqlMapClientTemplate to...