|
@@ -32,21 +32,21 @@ public class QcloudFileUtils {
|
|
|
return createCli(region);
|
|
|
}
|
|
|
|
|
|
- private static String accessKey;
|
|
|
+ private static String accessKey = "AKIDDF4dwzlGVTAmCMGvLVP4UfbHiuqVzFEw";
|
|
|
|
|
|
@Value("${cloud.accessKey}")
|
|
|
public void setAccessKey(String accessKeyParam) {
|
|
|
accessKey = accessKeyParam;
|
|
|
}
|
|
|
|
|
|
- private static String secretKey;
|
|
|
+ private static String secretKey = "TgbFcjZ8HDse9ToujIabLo1yf5YqtfBX";
|
|
|
|
|
|
@Value("${cloud.secretKey}")
|
|
|
public void setSecretKey(String secretKeyParam) {
|
|
|
secretKey = secretKeyParam;
|
|
|
}
|
|
|
|
|
|
- private static String region;
|
|
|
+ private static String region = "ap-shanghai";
|
|
|
|
|
|
@Value("${cloud.region}")
|
|
|
public void setRegion(String regionParam) {
|