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:
Aware, BeanClassLoaderAware, BeanFactoryAware, DisposableBean, FactoryBean<org.springframework.kafka.core.KafkaTemplate<K,V>>, InitializingBean, Lifecycle, Phased, SmartLifecycle
Direct Known Subclasses:
KafkaOutboundGatewaySpec.ReplyingKafkaTemplateSpec

public class KafkaTemplateSpec<K,V> extends IntegrationComponentSpec<KafkaTemplateSpec<K,V>,org.springframework.kafka.core.KafkaTemplate<K,V>>
An IntegrationComponentSpec implementation for the KafkaTemplate.
Since:
5.4
Author:
Artem Bilan, Gary Russell
  • Method Details

    • getTemplate

      public org.springframework.kafka.core.KafkaTemplate<K,V> getTemplate()
    • id

      public KafkaTemplateSpec<K,V> id(String id)
      Description copied from class: IntegrationComponentSpec
      Configure the component identifier. Used as the beanName to register the bean in the application context for this component.
      Overrides:
      id in class IntegrationComponentSpec<KafkaTemplateSpec<K,V>,org.springframework.kafka.core.KafkaTemplate<K,V>>
      Parameters:
      id - the id.
      Returns:
      the spec.
    • defaultTopic

      public KafkaTemplateSpec<K,V> defaultTopic(String 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 a ProducerListener which will be invoked when Kafka acknowledges a send operation. By default a LoggingProducerListener is configured which logs errors only.
      Parameters:
      producerListener - the listener; may be null.
      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