CustomLambdaConverterConfiguration Class — spring-boot Architecture
Architecture documentation for the CustomLambdaConverterConfiguration class in ConversionServiceDeducerTests.java from the spring-boot codebase.
Entity Profile
Relationship Graph
Source Code
core/spring-boot/src/test/java/org/springframework/boot/context/properties/ConversionServiceDeducerTests.java lines 146–161
@Configuration(proxyBeanMethods = false)
static class CustomLambdaConverterConfiguration {
@Bean
@ConfigurationPropertiesBinding
static Converter<InputStream, OutputStream> testConverter() {
return (source) -> new TestConverter().convert(source);
}
@Bean
@ConfigurationPropertiesBinding
static Converter<String, InputStream> stringConverter() {
return (source) -> new StringConverter().convert(source);
}
}
Domain
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free