diff --git a/spring-batch-docs/asciidoc/step.adoc b/spring-batch-docs/asciidoc/step.adoc index ff02d3941..b20764ada 100644 --- a/spring-batch-docs/asciidoc/step.adoc +++ b/spring-batch-docs/asciidoc/step.adoc @@ -2311,7 +2311,10 @@ public FlatFileItemReader flatFileItemReader(@Value("#{stepExecutionContext['inp [NOTE] ==== Any bean that uses late-binding must be declared with scope="step". See -<> for more information. +<> for more information. It should be noted +that a `Step` bean should not be step-scoped. If late-binding is needed in a step +definition, the components of that step (ie tasklet, item reader/writer, etc) +are the ones that should be scoped instead. ==== [NOTE]