|
@@ -42,7 +42,7 @@ public class AliyunUploadHandler implements UploadHandler {
|
|
String secret = AssertUtils.nonempty(properties.getSecret(), () -> "Aliyun upload secret is missing");
|
|
String secret = AssertUtils.nonempty(properties.getSecret(), () -> "Aliyun upload secret is missing");
|
|
String region = AssertUtils.nonempty(properties.getRegion(), () -> "Aliyun upload region is missing");
|
|
String region = AssertUtils.nonempty(properties.getRegion(), () -> "Aliyun upload region is missing");
|
|
String endpoint = AssertUtils.nonempty(properties.getEndpoint(), () -> "Aliyun upload endpoint is missing");
|
|
String endpoint = AssertUtils.nonempty(properties.getEndpoint(), () -> "Aliyun upload endpoint is missing");
|
|
- this.domain = AssertUtils.nonempty(properties.getDomain(), () -> "Aliyun upload domain is missing");
|
|
|
|
|
|
+ this.domain = AssertUtils.nonempty(properties.getDomain(), () -> "Aliyun upload access domain is missing");
|
|
this.directory = AssertUtils.nonempty(properties.getDirectory(), () -> "Aliyun upload directory is missing");
|
|
this.directory = AssertUtils.nonempty(properties.getDirectory(), () -> "Aliyun upload directory is missing");
|
|
|
|
|
|
// 初始化OSS客户端
|
|
// 初始化OSS客户端
|