addApplicationConverters() — spring-boot Function Reference
Architecture documentation for the addApplicationConverters() function in ApplicationConversionService.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD a2b6ceda_dcb0_19ee_00a8_fe47964d52a6["addApplicationConverters()"] 1d0b0e3c_fa44_1a8c_46da_d22375d36ef3["configure()"] 1d0b0e3c_fa44_1a8c_46da_d22375d36ef3 -->|calls| a2b6ceda_dcb0_19ee_00a8_fe47964d52a6 bb89b682_96a1_6e34_3786_deee01f8a6c1["addDelimitedStringConverters()"] a2b6ceda_dcb0_19ee_00a8_fe47964d52a6 -->|calls| bb89b682_96a1_6e34_3786_deee01f8a6c1 cba1a510_b294_cced_2bbe_9861b2c09a45["addConverter()"] a2b6ceda_dcb0_19ee_00a8_fe47964d52a6 -->|calls| cba1a510_b294_cced_2bbe_9861b2c09a45 5651b4c1_adac_0ee4_b395_b42a2e6f5285["addConverterFactory()"] a2b6ceda_dcb0_19ee_00a8_fe47964d52a6 -->|calls| 5651b4c1_adac_0ee4_b395_b42a2e6f5285 style a2b6ceda_dcb0_19ee_00a8_fe47964d52a6 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot/src/main/java/org/springframework/boot/convert/ApplicationConversionService.java lines 238–256
public static void addApplicationConverters(ConverterRegistry registry) {
addDelimitedStringConverters(registry);
registry.addConverter(new StringToDurationConverter());
registry.addConverter(new DurationToStringConverter());
registry.addConverter(new NumberToDurationConverter());
registry.addConverter(new DurationToNumberConverter());
registry.addConverter(new StringToPeriodConverter());
registry.addConverter(new PeriodToStringConverter());
registry.addConverter(new NumberToPeriodConverter());
registry.addConverter(new StringToDataSizeConverter());
registry.addConverter(new NumberToDataSizeConverter());
registry.addConverter(new StringToFileConverter());
registry.addConverter(new InputStreamSourceToByteArrayConverter());
registry.addConverterFactory(new LenientStringToEnumConverterFactory());
registry.addConverterFactory(new LenientBooleanToEnumConverterFactory());
if (registry instanceof ConversionService conversionService) {
addApplicationConverters(registry, conversionService);
}
}
Domain
Subdomains
Calls
- addConverter()
- addConverterFactory()
- addDelimitedStringConverters()
Called By
Source
Frequently Asked Questions
What does addApplicationConverters() do?
addApplicationConverters() is a function in the spring-boot codebase.
What does addApplicationConverters() call?
addApplicationConverters() calls 3 function(s): addConverter, addConverterFactory, addDelimitedStringConverters.
What calls addApplicationConverters()?
addApplicationConverters() is called by 1 function(s): configure.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free