zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package com.changhong.autoform.core.tool;
 
import javax.sql.DataSource;
 
/**
 * 线程存储区的key
 * @author WangYX
 *
 */
public class Keys<T> {
    
    private String key;
    
    private Class<T> clazz;
    
    private T defaultValue;
    
    public Keys(String key, Class<T> clazz) {
        super();
        this.key = key;
        this.clazz = clazz;
    }
 
    public Keys(String key, Class<T> clazz, T defaultValue) {
        super();
        this.key = key;
        this.clazz = clazz;
        this.defaultValue = defaultValue;
    }
    
    public static <T> Keys<T> getKeys(String key, Class<T> clazz){
        return new Keys<>(key, clazz);
    }
 
    public static <T> Keys<T> getKeys(String key, Class<T> clazz, T defaultValue){
        return new Keys<>(key, clazz, defaultValue);
    }
 
 
    public String getKey() {
        return key;
    }
 
    public void setKey(String key) {
        this.key = key;
    }
 
    public Class<T> getClazz() {
        return clazz;
    }
 
    public void setClazz(Class<T> clazz) {
        this.clazz = clazz;
    }
 
    public T getDefaultValue() {
        return defaultValue;
    }
 
    public void setDefaultValue(T defaultValue) {
        this.defaultValue = defaultValue;
    }
 
 
    /**
     * 数据源
     */
    public static final Keys<DataSource> DATA_SOURCE = getKeys("DATA_SOURCE", DataSource.class);
}