All Downloads are FREE. Search and download functionalities are using the official Maven repository.

site.zfei.at.file.AtFileConfigurationProperties Maven / Gradle / Ivy

package site.zfei.at.file;

import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;

@Component
@ConfigurationProperties(prefix = "at.sfile")
public class AtFileConfigurationProperties {

    private String uploadPath = "/../../sdata";
    private String visitPath = "/sfile";


    public String getUploadPath() {
        return uploadPath;
    }

    public void setUploadPath(String uploadPath) {
        this.uploadPath = uploadPath;
    }

    public String getVisitPath() {
        return visitPath;
    }

    public void setVisitPath(String visitPath) {
        this.visitPath = visitPath;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy