From 4feaca28bf1dc9e5d74f23ee18e977458c6c63be Mon Sep 17 00:00:00 2001 From: Glenn Renfro Date: Tue, 21 Feb 2023 14:07:22 -0500 Subject: [PATCH] Docs discussing difference between SCT and spring.task propeties User reported via this issue that the similar naming struction of these features was confusing. Added docs to address this. resolves #891 --- docs/src/main/asciidoc/features.adoc | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/src/main/asciidoc/features.adoc b/docs/src/main/asciidoc/features.adoc index 891c9674..5922b5bb 100644 --- a/docs/src/main/asciidoc/features.adoc +++ b/docs/src/main/asciidoc/features.adoc @@ -441,3 +441,11 @@ An example maven set of dependencies to enable task observability and metrics us runtime +[[spring-task-and-spring-cloud-task]] +=== Spring Task and Spring Cloud Task Properties + +The term `task` is frequently used word in the industry. In one such example Spring Boot offers the `spring.task` while Spring Cloud Task offers the `spring.cloud.task` properties. +This has caused some confusion in the past that these two groups of properties are directly related. However, they represent 2 different set of features offered in the Spring ecosystem. + +* `spring.task` refers to the properties that configure the `ThreadPoolTaskScheduler`. +* `spring.cloud.task` refers to the properties that configure features of Spring Cloud Task.