From 901b21cbe833ee2271c4e2e2e07ab94f3af85da8 Mon Sep 17 00:00:00 2001 From: Glenn Renfro Date: Mon, 27 Feb 2017 12:00:27 -0500 Subject: [PATCH] Add Note to TaskConfigurer Ref Doc Reminds users to create their own TaskConfigurer implementation when the DefaultTaskConfigurer does not meet their needs. resolves #272 --- spring-cloud-task-docs/src/main/asciidoc/features.adoc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/spring-cloud-task-docs/src/main/asciidoc/features.adoc b/spring-cloud-task-docs/src/main/asciidoc/features.adoc index 744c4746..9541ce42 100644 --- a/spring-cloud-task-docs/src/main/asciidoc/features.adoc +++ b/spring-cloud-task-docs/src/main/asciidoc/features.adoc @@ -236,6 +236,12 @@ repository) to be used. `ResourcelessTransactionManager` if it is not. |=== +Customizing any of the above is accomplished via a custom implementation of the +`TaskConfigurer` interface. Typically, extending the `DefaultTaskConfigurer` (which is +provided out of the box if a `TaskConfigurer` is not found) and overriding the +required getter is sufficient, however, implementing your own from scratch may be +required. + [[features-task-name]] === Task Name