欧美一区二区三区老妇人-欧美做爰猛烈大尺度电-99久久夜色精品国产亚洲a-亚洲福利视频一区二区

利用Mybatis怎么對配置文件進行解析-創(chuàng)新互聯(lián)

本篇文章給大家分享的是有關利用Mybatis怎么對配置文件進行解析,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

創(chuàng)新互聯(lián)公司主營榕江網(wǎng)站建設的網(wǎng)絡公司,主營網(wǎng)站建設方案,app軟件定制開發(fā),榕江h(huán)5微信小程序開發(fā)搭建,榕江網(wǎng)站營銷推廣歡迎榕江等地區(qū)企業(yè)咨詢

Mybatis是如何解析xml的

構建Configuration

利用Mybatis怎么對配置文件進行解析


我們調(diào)用new SqlSessionFactoryBuilder().build()方法的最終目的就是構建Configuration對象,那么Configuration何許人也?Configuration對象是一個配置管家, Configuration對象之中維護著所有的配置信息。
Configuration的代碼片段如下

public class Configuration {
 //環(huán)境
 protected Environment environment;
 protected boolean safeRowBoundsEnabled;
 protected boolean safeResultHandlerEnabled = true;
 protected boolean mapUnderscoreToCamelCase;
 protected boolean aggressiveLazyLoading;
 protected boolean multipleResultSetsEnabled = true;
 protected boolean useGeneratedKeys;
 protected boolean useColumnLabel = true;
 protected boolean cacheEnabled = true;
 protected boolean callSettersOnNulls;
 protected boolean useActualParamName = true;
 protected boolean returnInstanceForEmptyRow;
 
 //日志信息的前綴
 protected String logPrefix;
 
 //日志接口
 protected Class<? extends Log> logImpl;
 
 //文件系統(tǒng)接口
 protected Class<? extends VFS> vfsImpl;
 
 //本地Session范圍
 protected LocalCacheScope localCacheScope = LocalCacheScope.SESSION;
 
 //數(shù)據(jù)庫類型
 protected JdbcType jdbcTypeForNull = JdbcType.OTHER;
 
 //延遲加載的方法
 protected Set<String> lazyLoadTriggerMethods = new HashSet<String>(
   Arrays.asList(new String[] { "equals", "clone", "hashCode", "toString" }));
 
 //默認執(zhí)行語句超時
 protected Integer defaultStatementTimeout;
 
 //默認的執(zhí)行器
 protected ExecutorType defaultExecutorType = ExecutorType.SIMPLE;
 
 //數(shù)據(jù)庫ID
 protected String databaseId;
 
 //mapper注冊表
 protected final MapperRegistry mapperRegistry = new MapperRegistry(this);
 
 //攔截器鏈
 protected final InterceptorChain interceptorChain = new InterceptorChain();
 
 //類型處理器
 protected final TypeHandlerRegistry typeHandlerRegistry = new TypeHandlerRegistry();
 
 //類型別名
 protected final TypeAliasRegistry typeAliasRegistry = new TypeAliasRegistry();
 
 //語言驅(qū)動
 protected final LanguageDriverRegistry languageRegistry = new LanguageDriverRegistry();

 //mapper_id 和 mapper文件的映射
 protected final Map<String, MappedStatement> mappedStatements = new StrictMap<MappedStatement>(
   "Mapped Statements collection");
   
 //mapper_id和緩存的映射
 protected final Map<String, Cache> caches = new StrictMap<Cache>("Caches collection");
 
 //mapper_id和返回值的映射
 protected final Map<String, ResultMap> resultMaps = new StrictMap<ResultMap>("Result Maps collection");
 
 //mapper_id和參數(shù)的映射
 protected final Map<String, ParameterMap> parameterMaps = new StrictMap<ParameterMap>("Parameter Maps collection");
 
 //資源列表
 protected final Set<String> loadedResources = new HashSet<String>();
 
 未完.......
}

構建MappedStatement

在Configuration中,有個mappedStatements的屬性,這是個MappedStatement對象Map的集合,其key是這個mapper的namespace+對應節(jié)點的id,而value是一個MappedStatement對象。
在構建Configuration的時候,會去解析我們的配置文件。
解析配置文件的關鍵代碼如下

private void parseConfiguration(XNode root) {
 try {
 //issue #117 read properties first
 propertiesElement(root.evalNode("properties"));
 Properties settings = settingsAsProperties(root.evalNode("settings"));
 loadCustomVfs(settings);
 loadCustomLogImpl(settings);
 typeAliasesElement(root.evalNode("typeAliases"));
 pluginElement(root.evalNode("plugins"));
 objectFactoryElement(root.evalNode("objectFactory"));
 objectWrapperFactoryElement(root.evalNode("objectWrapperFactory"));
 reflectorFactoryElement(root.evalNode("reflectorFactory"));
 settingsElement(settings);
 // read it after objectFactory and objectWrapperFactory issue #631
 environmentsElement(root.evalNode("environments"));
 databaseIdProviderElement(root.evalNode("databaseIdProvider"));
 typeHandlerElement(root.evalNode("typeHandlers"));
 mapperElement(root.evalNode("mappers"));
 } catch (Exception e) {
 throw new BuilderException("Error parsing SQL Mapper Configuration. Cause: " + e, e);
 }
}

上訴代碼段倒數(shù)第三行mapperElement(root.evalNode("mappers"));就是解析mappers處就是把我們的mapper文件封裝成MappedStatement對象,然后保存到Configuration的mappedStatements屬性中,其中key是這個mapper的namespace+對應節(jié)點的id,而value是一個MappedStatement對象。保存的地方關鍵代碼如下

configuration.addMappedStatement(statement);

addMappedStatement()方法代碼如下

protected final Map<String, MappedStatement> mappedStatements = new StrictMap<MappedStatement>(
   "Mapped Statements collection");

public void addMappedStatement(MappedStatement ms) {
mappedStatements.put(ms.getId(), ms);
}

那么這個MappedStatement的又是何許人也?我們可以簡單的把MapperStatement理解為對sql的一個封裝,在MappedStatement中保存著一個SqlSource對象,其中就存有SQL的信息。相關代碼如下

public final class MappedStatement {
	private SqlSource sqlSource;
}

SqlSource 代碼如下

public interface SqlSource {
 BoundSql getBoundSql(Object parameterObject);
}

BoundSql代碼如下

public class BoundSql {
 private final String sql;
 private final List<ParameterMapping> parameterMappings;
}

關于二級緩存
我們在Configuration中看到了一個caches屬性

protected final Map<String, Cache> caches = new StrictMap<>("Caches collection");

這個東西的作用是什么呢?其實是關于Mybatis的二級緩存的。在解析配置文件的過程中,如果用到了二級緩存,便會把這個ID和對象也保存到configuration的caches中,相關代碼如下

public void addCache(Cache cache) {
 caches.put(cache.getId(), cache);
}

構建SqlSessionFactory

在Configuration對象構建完畢之后,就該依賴Configuration對象去構建SqlSessionFactory對象了,相關代碼如下

public SqlSessionFactory build(Configuration config) {
 return new DefaultSqlSessionFactory(config);
}

我們暫且把SqlSessionFactory稱為SqlSession工廠吧,SqlSessionFactory中有兩個方法,openSession()和getConfiguration()
SqlSessionFactory代碼如下

public interface SqlSessionFactory {
 SqlSession openSession();
 //其余openSession重載方法略…
 Configuration getConfiguration();
}

構建SqlSession

openSession()方法會返回一個SqlSession對象,SqlSession又是何許人也?SqlSession可以理解為程序與數(shù)據(jù)庫打交道的一個工具,通過它,程序可以往數(shù)據(jù)庫發(fā)送SQL執(zhí)行。
SqlSession代碼如下

public interface SqlSession extends Closeable {
 <T> T selectOne(String statement);
 <T> T selectOne(String statement, Object parameter);
 <E> List<E> selectList(String statement);
 <E> List<E> selectList(String statement, Object parameter);
 //其余增刪查改方法略…
}

以上就是利用Mybatis怎么對配置文件進行解析,小編相信有部分知識點可能是我們?nèi)粘9ぷ鲿姷交蛴玫降摹OM隳芡ㄟ^這篇文章學到更多知識。更多詳情敬請關注創(chuàng)新互聯(lián)行業(yè)資訊頻道。

網(wǎng)頁題目:利用Mybatis怎么對配置文件進行解析-創(chuàng)新互聯(lián)
鏈接URL:http://chinadenli.net/article42/cophhc.html

成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站收錄營銷型網(wǎng)站建設手機網(wǎng)站建設面包屑導航App設計網(wǎng)站策劃

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

成都網(wǎng)站建設公司