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

View File

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