org.reactivecommons.async.kafka.config.KafkaPropertiesAutoConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of async-kafka-starter Show documentation
Show all versions of async-kafka-starter Show documentation
Abstract your broker with semantic async messages
package org.reactivecommons.async.kafka.config;
import org.reactivecommons.async.kafka.config.spring.KafkaPropertiesBase;
import org.springframework.boot.context.properties.ConfigurationProperties;
@ConfigurationProperties(prefix = "spring.kafka")
public class KafkaPropertiesAutoConfig extends KafkaPropertiesBase {
public KafkaPropertiesAutoConfig() {
// put("bootstrap.servers", "localhost:9092");
}
}