From 2b7fcd271cff5a37da9f1b6aad8408dab505b613 Mon Sep 17 00:00:00 2001 From: Johnny Lim Date: Sat, 10 Feb 2024 12:03:37 +0900 Subject: [PATCH] Add Javadoc for ServerProperties.mimeMappings See gh-39503 --- .../boot/autoconfigure/web/ServerProperties.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/ServerProperties.java b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/ServerProperties.java index 7704eb283a..b8b352be82 100644 --- a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/ServerProperties.java +++ b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/ServerProperties.java @@ -117,6 +117,9 @@ public class ServerProperties { @NestedConfigurationProperty private final Compression compression = new Compression(); + /** + * Custom MIME mappings in addition to the default MIME mappings. + */ private final MimeMappings mimeMappings = MimeMappings.lazyCopy(MimeMappings.DEFAULT); @NestedConfigurationProperty