GlobalConfiguration.java 8.42 KB
   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
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
/**
* Copyright (c) 2011-2014, hubin (jobob@qq.com).
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package com.baomidou.mybatisplus.entity;

import com.baomidou.mybatisplus.enums.DBType;
import com.baomidou.mybatisplus.enums.FieldStrategy;
import com.baomidou.mybatisplus.enums.IdType;
import com.baomidou.mybatisplus.exceptions.MybatisPlusException;
import com.baomidou.mybatisplus.mapper.AutoSqlInjector;
import com.baomidou.mybatisplus.mapper.IMetaObjectHandler;
import com.baomidou.mybatisplus.mapper.ISqlInjector;
import com.baomidou.mybatisplus.toolkit.JdbcUtils;
import com.baomidou.mybatisplus.toolkit.TableInfoHelper;
import org.apache.ibatis.logging.Log;
import org.apache.ibatis.logging.LogFactory;
import org.apache.ibatis.session.Configuration;
import org.apache.ibatis.session.SqlSessionFactory;

import java.io.Serializable;
import java.util.Map;
import java.util.Set;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentSkipListSet;

/**
* <p>
* Mybatis全局缓存
* </p>
*
* @author Caratacus
* @Date 2016-12-06
*/
@SuppressWarnings("serial")
public class GlobalConfiguration implements Cloneable, Serializable {

// 日志
private static final Log logger = LogFactory.getLog(GlobalConfiguration.class);
/**
* 缓存全局信息
*/
private static final Map<String, GlobalConfiguration> GLOBAL_CONFIG = new ConcurrentHashMap<String, GlobalConfiguration>();
/**
* 默认参数
*/
public static final GlobalConfiguration DEFAULT = new GlobalConfiguration(new AutoSqlInjector());

// 数据库类型(默认 MySql)
private DBType dbType = DBType.MYSQL;
// 主键类型(默认 ID_WORKER)
private IdType idType = IdType.ID_WORKER;
// 表字段使用下划线命名(默认 false)
private boolean dbColumnUnderline = false;
// SQL注入器
private ISqlInjector sqlInjector;
// 元对象字段填充控制器
private IMetaObjectHandler metaObjectHandler = null;
// 字段验证策略
private FieldStrategy fieldStrategy = FieldStrategy.NOT_NULL;
// 是否刷新mapper
private boolean isRefresh = false;
// 是否自动获取DBType
private boolean isAutoSetDbType = true;
// 是否大写命名
private boolean isCapitalMode = false;
// 缓存当前Configuration的SqlSessionFactory
private SqlSessionFactory sqlSessionFactory;

private Set<String> mapperRegistryCache = new ConcurrentSkipListSet<String>();

public GlobalConfiguration() {
// TODO
}

public GlobalConfiguration(ISqlInjector sqlInjector) {
this.sqlInjector = sqlInjector;
}

public DBType getDbType() {
return dbType;
}

public void setDbType(String dbType) {
this.dbType = DBType.getDBType(dbType);
this.isAutoSetDbType = false;
}

public void setDbTypeByJdbcUrl(String jdbcUrl) {
this.dbType = JdbcUtils.getDbType(jdbcUrl);
}

public IdType getIdType() {
return idType;
}

public void setIdType(int idType) {
this.idType = IdType.getIdType(idType);
}

public boolean isDbColumnUnderline() {
return dbColumnUnderline;
}

public void setDbColumnUnderline(boolean dbColumnUnderline) {
this.dbColumnUnderline = dbColumnUnderline;
}

public ISqlInjector getSqlInjector() {
return sqlInjector;
}

public void setSqlInjector(ISqlInjector sqlInjector) {
this.sqlInjector = sqlInjector;
}

public IMetaObjectHandler getMetaObjectHandler() {
return metaObjectHandler;
}

public void setMetaObjectHandler(IMetaObjectHandler metaObjectHandler) {
this.metaObjectHandler = metaObjectHandler;
}

public FieldStrategy getFieldStrategy() {
return fieldStrategy;
}

public void setFieldStrategy(int fieldStrategy) {
this.fieldStrategy = FieldStrategy.getFieldStrategy(fieldStrategy);
}

public boolean isRefresh() {
return isRefresh;
}

public void setRefresh(boolean refresh) {
this.isRefresh = refresh;
}

public boolean isAutoSetDbType() {
return isAutoSetDbType;
}

public void setAutoSetDbType(boolean autoSetDbType) {
this.isAutoSetDbType = autoSetDbType;
}

public Set<String> getMapperRegistryCache() {
return mapperRegistryCache;
}

public void setMapperRegistryCache(Set<String> mapperRegistryCache) {
this.mapperRegistryCache = mapperRegistryCache;
}

public SqlSessionFactory getSqlSessionFactory() {
return sqlSessionFactory;
}

public void setSqlSessionFactory(SqlSessionFactory sqlSessionFactory) {
this.sqlSessionFactory = sqlSessionFactory;
}

@Override
protected GlobalConfiguration clone() throws CloneNotSupportedException {
return (GlobalConfiguration) super.clone();
}

/**
* 获取当前的SqlSessionFactory
*
* @param clazz
* @return
*/
public static SqlSessionFactory currentSessionFactory(Class<?> clazz) {
String configMark = TableInfoHelper.getTableInfo(clazz).getConfigMark();
GlobalConfiguration mybatisGlobalConfig = GlobalConfiguration.GlobalConfig(configMark);
return mybatisGlobalConfig.getSqlSessionFactory();
}

/**
* 获取默认MybatisGlobalConfig
*
* @return
*/
public static GlobalConfiguration defaults() {
try {
return DEFAULT.clone();
} catch (CloneNotSupportedException e) {
throw new MybatisPlusException("ERROR: CLONE MybatisGlobalConfig DEFAULT FAIL ! Cause:" + e);
}
}

/**
* <p>
* 设置全局设置(以configuration地址值作为Key)
* <p/>
*
* @param configuration
* @param mybatisGlobalConfig
* @return
*/
public static void setGlobalConfig(Configuration configuration, GlobalConfiguration mybatisGlobalConfig) {
if (configuration == null || mybatisGlobalConfig == null) {
new MybatisPlusException("Error: Could not setGlobalConfig");
}
// 设置全局设置
GLOBAL_CONFIG.put(configuration.toString(), mybatisGlobalConfig);
}

/**
* <p>
* 设置全局设置 (统一所有入口)
* <p/>
*
* @param configuration
* @return
*/
public void setGlobalConfig(Configuration configuration) {
setGlobalConfig(configuration, this);
}

/**
* 获取MybatisGlobalConfig (统一所有入口)
*
* @param configuration
* @return
*/
public static GlobalConfiguration GlobalConfig(Configuration configuration) {
if (configuration == null) {
throw new MybatisPlusException("Error: You need Initialize MybatisConfiguration !");
}
return GlobalConfig(configuration.toString());
}

/**
* 获取MybatisGlobalConfig (统一所有入口)
*
* @param configMark
* @return
*/
public static GlobalConfiguration GlobalConfig(String configMark) {
GlobalConfiguration cache = GLOBAL_CONFIG.get(configMark);
if (cache == null) {
// 没有获取全局配置初始全局配置
logger.warn("Warn: Not getting global configuration ! global configuration Initializing !");
GLOBAL_CONFIG.put(configMark, DEFAULT);
return DEFAULT;
}
return cache;
}

public static DBType getDbType(Configuration configuration) {
return GlobalConfig(configuration).getDbType();
}

public static IdType getIdType(Configuration configuration) {
return GlobalConfig(configuration).getIdType();
}

public static boolean isDbColumnUnderline(Configuration configuration) {
return GlobalConfig(configuration).isDbColumnUnderline();
}

public static ISqlInjector getSqlInjector(Configuration configuration) {
return GlobalConfig(configuration).getSqlInjector();
}

public static IMetaObjectHandler getMetaObjectHandler(Configuration configuration) {
return GlobalConfig(configuration).getMetaObjectHandler();
}

public static FieldStrategy getFieldStrategy(Configuration configuration) {
return GlobalConfig(configuration).getFieldStrategy();
}

public static boolean isRefresh(Configuration configuration) {
return GlobalConfig(configuration).isRefresh();
}

public static boolean isAutoSetDbType(Configuration configuration) {
return GlobalConfig(configuration).isAutoSetDbType();
}

public static Set<String> getMapperRegistryCache(Configuration configuration) {
return GlobalConfig(configuration).getMapperRegistryCache();
}

public boolean isCapitalMode() {
return isCapitalMode;
}

public void setCapitalMode(boolean isCapitalMode) {
this.isCapitalMode = isCapitalMode;
}

}