Hi,
I have a question about the Execution context that you can put stuff into if you want subsequent steps in your job to access it, like so...
Is it true that SB will persist my Value object (agentsVO in this example) to the job repository in the database? And if so will it be a performance hit if the Value object is too large?Code:ExecutionContext jobExecutionContext = getStepExecution()getExecutionContext(); // get context obj from SB jobExecutionContext.put("agentsVO", agentVOs); // put my obj in context
Thanks in advance for any help.


Reply With Quote