Fix typo in a class name

This commit is contained in:
Soby Chacko
2020-02-11 17:55:50 -05:00
parent 0b3d508fe2
commit 0dc5196cb2
4 changed files with 9 additions and 5 deletions

View File

@@ -40,7 +40,7 @@ import org.springframework.context.annotation.Import;
@Configuration
@Import({ KafkaAutoConfiguration.class,
KafkaStreamsBinderHealthIndicatorConfiguration.class,
MutliBinderPropertiesConfiguration.class})
MultiBinderPropertiesConfiguration.class})
public class GlobalKTableBinderConfiguration {
@Bean

View File

@@ -38,7 +38,7 @@ import org.springframework.context.annotation.Import;
@Configuration
@Import({ KafkaAutoConfiguration.class,
KafkaStreamsBinderHealthIndicatorConfiguration.class,
MutliBinderPropertiesConfiguration.class})
MultiBinderPropertiesConfiguration.class})
public class KStreamBinderConfiguration {
@Bean

View File

@@ -40,7 +40,7 @@ import org.springframework.context.annotation.Import;
@Configuration
@Import({ KafkaAutoConfiguration.class,
KafkaStreamsBinderHealthIndicatorConfiguration.class,
MutliBinderPropertiesConfiguration.class})
MultiBinderPropertiesConfiguration.class})
public class KTableBinderConfiguration {
@Bean

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2019-2019 the original author or authors.
* Copyright 2019-2020 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -24,8 +24,12 @@ import org.springframework.cloud.stream.binder.kafka.streams.properties.KafkaStr
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
/**
* @author Soby Chacko
* @since 3.0.2
*/
@Configuration
public class MutliBinderPropertiesConfiguration {
public class MultiBinderPropertiesConfiguration {
@Bean
@ConfigurationProperties(prefix = "spring.cloud.stream.kafka.streams.binder")