From a5be5af7e97d27509c18567be728184d5d0a3b5e Mon Sep 17 00:00:00 2001 From: Sanghyuk Jung Date: Sat, 20 Jul 2024 11:15:04 +0900 Subject: [PATCH] Specify 'Spring Boot' to avoid confusion with Spring Framework version --- .../2-batch/4-data-flow-spring-batch.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/documentation/pages/4-batch-developer-guides/2-batch/4-data-flow-spring-batch.md b/content/documentation/pages/4-batch-developer-guides/2-batch/4-data-flow-spring-batch.md index 2a7e417f..48e50756 100644 --- a/content/documentation/pages/4-batch-developer-guides/2-batch/4-data-flow-spring-batch.md +++ b/content/documentation/pages/4-batch-developer-guides/2-batch/4-data-flow-spring-batch.md @@ -53,7 +53,7 @@ Registration associates a logical application name and type with a physical reso The URI conforms to a [schema](https://docs.spring.io/spring-cloud-dataflow/docs/current/reference/htmlsingle/#spring-cloud-dataflow-register-stream-apps) and may represent a Maven artifact, a Docker image, or an actual `http(s)` or `file` URL. Data Flow defines some logical application types, which indicate its role as a streaming component, a task, or a standalone application. In this case, our Spring Batch application is registered as a `task` type. -You will need to also specify if the application is a Spring Boot 2.7.x or a Spring 3.x based application. +You will need to also specify if the application is a Spring Boot 2.7.x or a Spring Boot 3.x based application. In our examples below we will register Spring Boot 2.7.x application.