Examples of JobContext


Examples of org.springframework.batch.core.scope.context.JobContext

  /**
   * This will be used to resolve expressions in job-scoped beans.
   */
  @Override
  public Object resolveContextualObject(String key) {
    JobContext context = getContext();
    // TODO: support for attributes as well maybe (setters not exposed yet
    // so not urgent).
    return new BeanWrapperImpl(context).getPropertyValue(key);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.