From 625f25130d8e46287160274711d0fffa415edfd3 Mon Sep 17 00:00:00 2001 From: Oleg Zhurakousky Date: Mon, 27 May 2024 09:10:53 +0200 Subject: [PATCH] GH-2930 Add configuration metadata Resolves #2930 --- ...itional-spring-configuration-metadata.json | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/core/spring-cloud-stream/src/main/resources/META-INF/additional-spring-configuration-metadata.json b/core/spring-cloud-stream/src/main/resources/META-INF/additional-spring-configuration-metadata.json index c8cc7ac9c9..0a4bb711b9 100644 --- a/core/spring-cloud-stream/src/main/resources/META-INF/additional-spring-configuration-metadata.json +++ b/core/spring-cloud-stream/src/main/resources/META-INF/additional-spring-configuration-metadata.json @@ -23,6 +23,30 @@ "name": "spring.cloud.stream.pollable-source", "description": "A semi-colon delimited list of binding names of pollable sources. Binding names follow the same naming convention as functions. For example, name '...pollable-source=foobar' will be accessible as 'foobar-iin-0'' binding", "type": "java.lang.String" + }, + { + "defaultValue": "none", + "name": "spring.cloud.stream.default.binder", + "description": "The name of the default binder to use when multiple binders are present", + "type": "java.lang.String" + }, + { + "defaultValue": "none", + "name": "spring.cloud.stream.default.group", + "description": "The name of the default consumer group", + "type": "java.lang.String" + }, + { + "defaultValue": "none", + "name": "spring.cloud.stream.default.content-type", + "description": "The name of the default content type to apply for Message conversion", + "type": "java.lang.String" + }, + { + "defaultValue": "none", + "name": "spring.cloud.stream.default.consumer.concurrency", + "description": "Default concurrency settings", + "type": "java.lang.String" } ] }