diff --git a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/parser/ConfigFileTypeEnum.java b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/parser/ConfigFileTypeEnum.java index cba9c46d..a6249430 100644 --- a/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/parser/ConfigFileTypeEnum.java +++ b/hippo4j-spring-boot/hippo4j-core-spring-boot-starter/src/main/java/cn/hippo4j/core/starter/parser/ConfigFileTypeEnum.java @@ -10,11 +10,34 @@ import lombok.Getter; @Getter public enum ConfigFileTypeEnum { + /** + * properties + */ PROPERTIES("properties"), + + /** + * xml + */ XML("xml"), + + /** + * json + */ JSON("json"), + + /** + * yml + */ YML("yml"), + + /** + * yaml + */ YAML("yaml"), + + /** + * txt + */ TXT("txt"); private final String value;