通用框架平台,每个分支对应子通用框架平台,禁止Merge不同分支!! 分支版本区别见项目内readme.md
whycxzp
2021-01-23 f7f8e9cc7de686fe3e8ef424f1d50fa821255449
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
package com.whyc.properties;
 
public class RedisClusterProperties {
    private Integer scanInterval;
 
    private String nodes;
 
    private String readMode;
 
    private Integer retryAttempts;
 
    private Integer failedAttempts;
 
    private Integer slaveConnectionPoolSize;
 
    private Integer masterConnectionPoolSize;
 
    private Integer retryInterval;
 
    public Integer getScanInterval() {
        return scanInterval;
    }
 
    public void setScanInterval(Integer scanInterval) {
        this.scanInterval = scanInterval;
    }
 
    public String getNodes() {
        return nodes;
    }
 
    public void setNodes(String nodes) {
        this.nodes = nodes;
    }
 
    public String getReadMode() {
        return readMode;
    }
 
    public void setReadMode(String readMode) {
        this.readMode = readMode;
    }
 
    public Integer getRetryAttempts() {
        return retryAttempts;
    }
 
    public void setRetryAttempts(Integer retryAttempts) {
        this.retryAttempts = retryAttempts;
    }
 
    public Integer getFailedAttempts() {
        return failedAttempts;
    }
 
    public void setFailedAttempts(Integer failedAttempts) {
        this.failedAttempts = failedAttempts;
    }
 
    public Integer getSlaveConnectionPoolSize() {
        return slaveConnectionPoolSize;
    }
 
    public void setSlaveConnectionPoolSize(Integer slaveConnectionPoolSize) {
        this.slaveConnectionPoolSize = slaveConnectionPoolSize;
    }
 
    public Integer getMasterConnectionPoolSize() {
        return masterConnectionPoolSize;
    }
 
    public void setMasterConnectionPoolSize(Integer masterConnectionPoolSize) {
        this.masterConnectionPoolSize = masterConnectionPoolSize;
    }
 
    public Integer getRetryInterval() {
        return retryInterval;
    }
 
    public void setRetryInterval(Integer retryInterval) {
        this.retryInterval = retryInterval;
    }
}