GH-3065 Fix lazy initialization for Kafka streams configuration classes

Resolves #3065
This commit is contained in:
Oleg Zhurakousky
2025-01-06 15:07:27 +01:00
parent af6b4ff9eb
commit 534277ff3d
2 changed files with 6 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2018-2021 the original author or authors.
* Copyright 2018-2025 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,6 +24,7 @@ import org.springframework.boot.context.properties.source.ConfigurationPropertyN
import org.springframework.cloud.stream.config.BindingHandlerAdvise.MappingsProvider;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Lazy;
/**
* {@link EnableAutoConfiguration Auto-configuration} for extended binding metadata for Kafka Streams.
@@ -32,6 +33,7 @@ import org.springframework.context.annotation.Configuration;
* @since 3.2
*/
@Configuration(proxyBeanMethods = false)
@Lazy(false)
public class ExtendedBindingHandlerMappingsProviderAutoConfiguration {
@Bean

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2023-2023 the original author or authors.
* Copyright 2023-2025 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.
@@ -16,18 +16,19 @@
package org.springframework.cloud.stream.binder.kafka.streams.function;
//import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.cloud.stream.binder.kafka.streams.KafkaStreamsFunctionProcessor;
import org.springframework.cloud.stream.function.StreamFunctionProperties;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Conditional;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Lazy;
/**
* @author Soby Chacko
* @since 2.2.0
*/
@Configuration(proxyBeanMethods = false)
@Lazy(false)
public class KafkaStreamsFunctionAutoConfiguration {
@Bean