Example usage for org.springframework.batch.core.scope BatchScopeSupport subclass-usage

List of usage examples for org.springframework.batch.core.scope BatchScopeSupport subclass-usage

Introduction

In this page you can find the example usage for org.springframework.batch.core.scope BatchScopeSupport subclass-usage.

Usage

From source file org.springframework.batch.core.scope.JobScope.java

/**
 * Scope for job context. Objects in this scope use the Spring container as an
 * object factory, so there is only one instance of such a bean per executing
 * job. All objects in this scope are <aop:scoped-proxy/> (no need to
 * decorate the bean definitions).<br>
 * <br>

From source file org.springframework.batch.core.scope.StepScope.java

/**
 * Scope for step context. Objects in this scope use the Spring container as an
 * object factory, so there is only one instance of such a bean per executing
 * step. All objects in this scope are &lt;aop:scoped-proxy/&gt; (no need to
 * decorate the bean definitions).<br>
 * <br>