Home / Class/ PrinterConfiguration Class — spring-boot Architecture

PrinterConfiguration Class — spring-boot Architecture

Architecture documentation for the PrinterConfiguration 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 163–174

	@Configuration(proxyBeanMethods = false)
	static class PrinterConfiguration {

		@Bean
		@ConfigurationPropertiesBinding
		static Printer<InputStream> inputStreamPrinter() {
			return (source, locale) -> ThrowingSupplier
				.of(() -> StreamUtils.copyToString(source, StandardCharsets.UTF_8))
				.get();
		}

	}

Domain

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free