MybatisSessionFactoryBuilder.java 2.4 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
/**
* 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;

import java.io.InputStream;
import java.io.Reader;
import java.util.Properties;

import org.apache.ibatis.exceptions.ExceptionFactory;
import org.apache.ibatis.executor.ErrorContext;
import org.apache.ibatis.session.SqlSessionFactory;
import org.apache.ibatis.session.SqlSessionFactoryBuilder;

import com.baomidou.mybatisplus.entity.GlobalConfiguration;
import com.baomidou.mybatisplus.toolkit.IOUtils;

/**
* <p>
* replace default SqlSessionFactoryBuilder class
* </p>
*
* @author hubin
* @Date 2016-01-23
*/
public class MybatisSessionFactoryBuilder extends SqlSessionFactoryBuilder {

private GlobalConfiguration globalConfig = GlobalConfiguration.defaults();

@Override
public SqlSessionFactory build(Reader reader, String environment, Properties properties) {
try {
MybatisXMLConfigBuilder parser = new MybatisXMLConfigBuilder(reader, environment, properties);
globalConfig.setGlobalConfig(parser.getConfiguration());
return build(parser.parse());
} catch (Exception e) {
throw ExceptionFactory.wrapException("Error building SqlSession.", e);
} finally {
ErrorContext.instance().reset();
IOUtils.closeQuietly(reader);
}
}

@Override
public SqlSessionFactory build(InputStream inputStream, String environment, Properties properties) {
try {
MybatisXMLConfigBuilder parser = new MybatisXMLConfigBuilder(inputStream, environment, properties);
globalConfig.setGlobalConfig(parser.getConfiguration());
return build(parser.parse());
} catch (Exception e) {
throw ExceptionFactory.wrapException("Error building SqlSession.", e);
} finally {
ErrorContext.instance().reset();
IOUtils.closeQuietly(inputStream);
}
}

//TODO 注入全局配置
public void setGlobalConfig(GlobalConfiguration globalConfig) {
this.globalConfig = globalConfig;
}

}