package com.mzl.flower.config; import lombok.Data; import org.springframework.boot.context.properties.ConfigurationProperties; import org.springframework.stereotype.Component; @Data @Component @ConfigurationProperties(prefix = "upload") public class UploadProperties { private String fileServerPath; private String fileGroup; private String localServerPath; }