package org.springblade.common.config;
|
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
import org.springframework.core.annotation.Order;
|
import org.springframework.stereotype.Component;
|
|
/**
|
*Jun 12, 2019
|
*
|
* FileConfig.java
|
*/
|
@ConfigurationProperties(prefix = "upload")
|
@Component
|
@Order
|
public class FileConfig {
|
|
public static String localtion;
|
public static String maxFileSize;
|
public static String maxRequestSize;
|
public static String url;
|
public static String access;
|
public static String secret;
|
public static String bucket;
|
|
/**
|
* @param localtion the localtion to set
|
*/
|
public void setLocaltion(String localtion) {
|
FileConfig.localtion = localtion;
|
}
|
|
/**
|
* @param maxFileSize the maxFileSize to set
|
*/
|
public void setMaxFileSize(String maxFileSize) {
|
FileConfig.maxFileSize = maxFileSize;
|
}
|
|
/**
|
* @param maxRequestSize the maxRequestSize to set
|
*/
|
public void setMaxRequestSize(String maxRequestSize) {
|
FileConfig.maxRequestSize = maxRequestSize;
|
}
|
|
public void setUrl(String url) {
|
FileConfig.url = url;
|
}
|
|
public void setAccess(String access) {
|
FileConfig.access = access;
|
}
|
|
public void setSecret(String secret) {
|
FileConfig.secret = secret;
|
}
|
|
public void setBucket(String bucket) {
|
FileConfig.bucket = bucket;
|
}
|
}
|