无关风月
2025-01-23 c3019597126f19e8508bd22e7da3a39058033510
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package com.jilongda.common.component;
 
/**
 * @author xiaochen
 * @ClassName AliOss
 * @Description
 * @date 2020-04-15 10:23
 */
public class AliOss {
    /**
     * 请填写您的AccessKeyId。LTAI5tPbJsVfBZZTPqPe8A2r
     */
    public static final String accessKeyId = "LTAI5tL1dE1DzT4ZYdDQZ8k7";
    /**
     * 请填写您的AccessKeySecret。
     */
    public static final String accessKeySecret = "4SZBtTyLhOoYRcfMS4SVAtGz8ZnxRP";
    /**
     * 请填写您的 endpoint。
     */
    public static final String endpoint = "oss-cn-shenzhen.aliyuncs.com";
    /**
     * 请填写您的 bucketname 。
     */
    public static final String bucketName = "yandu66";
    /**
     * host的格式为 bucketname.endpoint
     */
    public static final String host = "https://yandu66.oss-cn-shenzhen.aliyuncs.com";
 
    public static String dir = "eyes/";
 
}