All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jeesuite.springboot.starter.kafka.DelegateKafkaConsumerConfiguration Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
/**
 * 
 */
package com.jeesuite.springboot.starter.kafka;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.autoconfigure.condition.ConditionalOnClass;
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

import com.jeesuite.kafka.consumer.hanlder.OffsetLogHanlder;
import com.jeesuite.kafka.consumer.hanlder.RetryErrorMessageHandler;
import com.jeesuite.kafka.spring.TopicConsumerSpringProvider;

/**
 * @description 
* @author vakin * @date 2017年3月28日 */ @Configuration @EnableConfigurationProperties(KafkaConsumerProperties.class) @ConditionalOnClass(TopicConsumerSpringProvider.class) @ConditionalOnProperty(name="kafka.bootstrap.servers") public class DelegateKafkaConsumerConfiguration { @Autowired private KafkaConsumerProperties properties; @Autowired(required=false) private OffsetLogHanlder offsetLogHanlder; @Autowired(required=false) private RetryErrorMessageHandler retryErrorMessageHandler; @Bean public TopicConsumerSpringProvider comsumerProvider() { TopicConsumerSpringProvider bean = new TopicConsumerSpringProvider(); bean.setConfigs(properties.getConfigs()); bean.setIndependent(properties.isIndependent()); bean.setProcessThreads(properties.getProcessThreads()); bean.setUseNewAPI(properties.isUseNewAPI()); bean.setScanPackages(properties.getScanPackages()); bean.setOffsetLogHanlder(offsetLogHanlder); bean.setRetryErrorMessageHandler(retryErrorMessageHandler); return bean; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy