method invocation result gets set as JobExecutionContext result (SPR-5831)

This commit is contained in:
Juergen Hoeller 2009-06-22 17:52:12 +00:00
parent 6ee8fbe533
commit 87314b950e
1 changed files with 1 additions and 1 deletions

View File

@ -261,7 +261,7 @@ public class MethodInvokingJobDetailFactoryBean extends ArgumentConvertingMethod
@Override @Override
protected void executeInternal(JobExecutionContext context) throws JobExecutionException { protected void executeInternal(JobExecutionContext context) throws JobExecutionException {
try { try {
this.methodInvoker.invoke(); context.setResult(this.methodInvoker.invoke());
} }
catch (InvocationTargetException ex) { catch (InvocationTargetException ex) {
if (ex.getTargetException() instanceof JobExecutionException) { if (ex.getTargetException() instanceof JobExecutionException) {