Set more 'proxyBeanMethods' to false

This commit is contained in:
Oleg Zhurakousky
2022-10-05 13:39:28 +02:00
parent 4da2fab5b8
commit 4bd22b394e
2 changed files with 1 additions and 67 deletions

View File

@@ -1,66 +0,0 @@
/*
* Copyright 2018-2019 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.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.cloud.function.adapter.aws;
import org.springframework.boot.CommandLineRunner;
import org.springframework.boot.autoconfigure.AutoConfigureBefore;
import org.springframework.boot.autoconfigure.condition.ConditionalOnClass;
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.cloud.function.web.source.DestinationResolver;
import org.springframework.cloud.function.web.source.FunctionExporterAutoConfiguration;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
/**
* @author Dave Syer
*/
//TODO - do we actually need it?????
@Configuration
@AutoConfigureBefore(FunctionExporterAutoConfiguration.class)
@ConditionalOnClass(DestinationResolver.class)
@ConditionalOnProperty(prefix = "spring.cloud.function.web.export", name = "enabled", matchIfMissing = false)
public class CustomRuntimeAutoConfiguration {
@Bean
@ConditionalOnMissingBean
public DestinationResolver destinationResolver() {
return new LambdaDestinationResolver();
}
@Bean
public CommandLineRunner backgrounder() {
return args -> background();
}
static void background() {
Thread thread = new Thread(() -> {
System.out.println("Started");
while (true) {
try {
Thread.sleep(500L);
}
catch (InterruptedException e) {
}
}
});
thread.setDaemon(false);
thread.start();
}
}

View File

@@ -115,7 +115,7 @@ public class CustomRuntimeEventLoopTest {
}
@EnableAutoConfiguration
@Configuration
@Configuration(proxyBeanMethods = false)
protected static class MultipleFunctionConfiguration {
@Bean
public Function<String, String> uppercase() {