Class KafkaTemplateSpec<K,V>
java.lang.Object
org.springframework.beans.factory.config.AbstractFactoryBean<T>
org.springframework.integration.dsl.IntegrationComponentSpec<KafkaTemplateSpec<K,V>,org.springframework.kafka.core.KafkaTemplate<K,V>>
org.springframework.integration.kafka.dsl.KafkaTemplateSpec<K,V>
- Type Parameters:
K- the key type.V- the value type.
- All Implemented Interfaces:
org.springframework.beans.factory.Aware,org.springframework.beans.factory.BeanClassLoaderAware,org.springframework.beans.factory.BeanFactoryAware,org.springframework.beans.factory.DisposableBean,org.springframework.beans.factory.FactoryBean<org.springframework.kafka.core.KafkaTemplate<K,V>>,org.springframework.beans.factory.InitializingBean,org.springframework.context.Lifecycle,org.springframework.context.Phased,org.springframework.context.SmartLifecycle
- Direct Known Subclasses:
KafkaOutboundGatewaySpec.ReplyingKafkaTemplateSpec
public class KafkaTemplateSpec<K,V> extends org.springframework.integration.dsl.IntegrationComponentSpec<KafkaTemplateSpec<K,V>,org.springframework.kafka.core.KafkaTemplate<K,V>>
An
IntegrationComponentSpec implementation for the KafkaTemplate.- Since:
- 5.4
-
Field Summary
-
Method Summary
Modifier and Type Method Description KafkaTemplateSpec<K,V>defaultTopic(java.lang.String defaultTopic)/** Set the default topic for send methods where a topic is not providing.org.springframework.kafka.core.KafkaTemplate<K,V>getTemplate()KafkaTemplateSpec<K,V>id(java.lang.String id)KafkaTemplateSpec<K,V>messageConverter(org.springframework.kafka.support.converter.RecordMessageConverter messageConverter)Set the message converter to use.KafkaTemplateSpec<K,V>producerListener(org.springframework.kafka.support.ProducerListener<K,V> producerListener)Set aProducerListenerwhich will be invoked when Kafka acknowledges a send operation.Methods inherited from class org.springframework.integration.dsl.IntegrationComponentSpec
_this, createInstance, destroyInstance, doGet, get, getId, getObjectType, getPhase, isAutoStartup, isRunning, start, stop, stop
-
Method Details
-
getTemplate
-
id
- Overrides:
idin classorg.springframework.integration.dsl.IntegrationComponentSpec<KafkaTemplateSpec<K,V>,org.springframework.kafka.core.KafkaTemplate<K,V>>
-
defaultTopic
/** Set the default topic for send methods where a topic is not providing.- Parameters:
defaultTopic- the topic.- Returns:
- the spec
-
producerListener
public KafkaTemplateSpec<K,V> producerListener(org.springframework.kafka.support.ProducerListener<K,V> producerListener)Set aProducerListenerwhich will be invoked when Kafka acknowledges a send operation. By default aLoggingProducerListeneris configured which logs errors only.- Parameters:
producerListener- the listener; may benull.- Returns:
- the spec
-
messageConverter
public KafkaTemplateSpec<K,V> messageConverter(org.springframework.kafka.support.converter.RecordMessageConverter messageConverter)Set the message converter to use.- Parameters:
messageConverter- the message converter.- Returns:
- the spec
-