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

master
Juergen Hoeller 15 years ago
parent 6ee8fbe533
commit 87314b950e
  1. 2
      org.springframework.context.support/src/main/java/org/springframework/scheduling/quartz/MethodInvokingJobDetailFactoryBean.java

@ -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) {

Loading…
Cancel
Save