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 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226
| import com.alibaba.druid.pool.DruidDataSource; import lombok.Getter; import lombok.Setter; import lombok.extern.slf4j.Slf4j; import org.apache.commons.lang.StringUtils;
import java.util.LinkedHashMap; import java.util.Map; import java.util.Objects;
@Slf4j public class ConnectionPoolUtil {
private static final int INITIAL_SIZE = 10;
private static final int MIN_IDLE = 10;
private static final int MAX_ACTIVE = 200;
private static final int MAX_WAIT = 60_000;
private static final int TIME_BETWEEN_EVICTION_RUNS_MILLIS = 200_000;
private static final int CONNECTION_ERRORS_RETRY_COUNT = 3;
private static final int MIN_EVICT_TABLE_IDLE_TIME_MILLIS = 5 * 60 * 1000;
private static final int CONTAINER_MAX_SIZE = 5;
private static final Map<DbSourceKey, DruidDataSource> containers = new ContainerLinkedHashMap(CONTAINER_MAX_SIZE);
public synchronized static DruidDataSource getDataSource(String driverName, String connStr, String username, String password, String validateQuery) { try { DbSourceKey dbSourceKey = new DbSourceKey(connStr, username, password); if (containers.containsKey(dbSourceKey)) { return getDruidDataSource(dbSourceKey); }
containers.put(dbSourceKey, createDruidDataSource(driverName, connStr, username, password, validateQuery));
return containers.get(dbSourceKey); } catch (Exception e) { log.error("创建数据源连接池失败:{}", e.getMessage(), e); } }
private static DruidDataSource createDruidDataSource(String driverName, String connStr, String username, String password, String validateQuery) { DruidDataSource ds = new DruidDataSource();
ds.setDriverClassName(driverName); ds.setUrl(connStr); ds.setUsername(username); ds.setPassword(password);
ds.setInitialSize(INITIAL_SIZE); ds.setMinIdle(MIN_IDLE); ds.setMaxActive(MAX_ACTIVE);
ds.setRemoveAbandoned(true); ds.setRemoveAbandonedTimeout(30);
ds.setMaxWait(MAX_WAIT); ds.setTimeBetweenEvictionRunsMillis(TIME_BETWEEN_EVICTION_RUNS_MILLIS); ds.setBreakAfterAcquireFailure(true); ds.setConnectionErrorRetryAttempts(CONNECTION_ERRORS_RETRY_COUNT);
if (StringUtils.isBlank(validateQuery)) { validateQuery = "SELECT 'x'"; } else if ("-1".equals(validateQuery)) { validateQuery = null; } ds.setValidationQuery(validateQuery); ds.setTestWhileIdle(true); ds.setTestOnBorrow(true); ds.setMinEvictableIdleTimeMillis(MIN_EVICT_TABLE_IDLE_TIME_MILLIS);
return ds; }
private static DruidDataSource getDruidDataSource(DbSourceKey dbSourceKey) { if (!containers.containsKey(dbSourceKey)) { return null; } if (!dbSourceKey.getPassword().equals(containers.get(dbSourceKey).getPassword())) { containers.get(dbSourceKey).setPassword(dbSourceKey.getPassword()); } return containers.get(dbSourceKey); }
private static class ContainerLinkedHashMap extends LinkedHashMap<DbSourceKey, DruidDataSource> {
private final int maxSize;
ContainerLinkedHashMap(int maxSize) { if (maxSize <= 0) { this.maxSize = 1; } else { this.maxSize = maxSize; } }
@Override public DruidDataSource get(Object key) { return super.get(key); }
@Override protected boolean removeEldestEntry(Map.Entry<DbSourceKey, DruidDataSource> eldest) { if (containers.size() > maxSize) { DruidDataSource druidDataSource = eldest.getValue(); druidDataSource.close(); }
return containers.size() > maxSize; } }
private static class DbSourceKey {
private final String connStr;
private final String account;
@Setter @Getter private String password;
DbSourceKey(String connStr, String account, String password) { this.connStr = connStr; this.account = account; this.password = password; }
@Override public boolean equals(Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; DbSourceKey that = (DbSourceKey) o; return Objects.equals(connStr, that.connStr) && Objects.equals(account, that.account); }
@Override public int hashCode() { return Objects.hash(connStr, account); } }
}
|