一请祖、解析XML
首先订歪,Mybatis在初始化SqlSessionFactoryBean的時(shí)候,找到mapperLocations路徑去解析里面所有的XML文件肆捕,這里我們重點(diǎn)關(guān)注兩部分刷晋。
關(guān)于SqlSessionFactory初始化請(qǐng)看Mybatis常用對(duì)象SqlSessionFactory和SqlSession
@Configuration
@EnableTransactionManagement
@MapperScan("com.xxx.xxx.*.mapper")
public class SessionFactoryConfig implements TransactionManagementConfigurer {
@Autowired
private DataSource dataSource;
@Bean
public SqlSessionFactory sqlSessionFactory() throws Exception {
final SqlSessionFactoryBean sqlSessionFactoryBean = new SqlSessionFactoryBean();
sqlSessionFactoryBean.setDataSource(dataSource);
return sqlSessionFactoryBean.getObject();
}
@Bean
public SqlSessionTemplate sqlSessionTemplate(SqlSessionFactory sqlSessionFactory) {
return new SqlSessionTemplate(sqlSessionFactory);
}
@Bean
@Override
public PlatformTransactionManager annotationDrivenTransactionManager() {
return new DataSourceTransactionManager(dataSource);
}
}
解析com.xxx.xxx.*.mapper路徑下所有的Mapper.xml 文件
1、創(chuàng)建SqlSource
Mybatis會(huì)把每個(gè)SQL標(biāo)簽封裝成SqlSource對(duì)象慎陵,然后根據(jù)SQL語(yǔ)句的不同眼虱,又分為動(dòng)態(tài)SQL和靜態(tài)SQL。其中席纽,靜態(tài)SQL包含一段String類型的sql語(yǔ)句捏悬;而動(dòng)態(tài)SQL則是由一個(gè)個(gè)SqlNode組成。
假如我們有這樣一個(gè)SQL:
<select id="getUserById" resultType="user">
select * from user
<where>
<if test="uid!=null">
and uid=#{uid}
</if>
</where>
</select>
它對(duì)應(yīng)的SqlSource對(duì)象看起來(lái)應(yīng)該是這樣的:
2润梯、創(chuàng)建MappedStatement
XML文件中的每一個(gè)SQL標(biāo)簽就對(duì)應(yīng)一個(gè)MappedStatement對(duì)象过牙,這里面有兩個(gè)屬性很重要。
id:全限定類名+方法名組成的ID纺铭。
sqlSource:當(dāng)前SQL標(biāo)簽對(duì)應(yīng)的SqlSource對(duì)象寇钉。
創(chuàng)建完MappedStatement對(duì)象,將它緩存到Configuration#mappedStatements中舶赔。
Configuration對(duì)象就是Mybatis中的大管家扫倡,基本所有的配置信息都維護(hù)在這里。把所有的XML都解析完成之后竟纳,Configuration就包含了所有的SQL信息撵溃。
到目前為止,XML就解析完成了蚁袭。當(dāng)我們執(zhí)行Mybatis方法的時(shí)候,就通過(guò)全限定類名+方法名找到MappedStatement對(duì)象石咬,然后解析里面的SQL內(nèi)容揩悄,執(zhí)行即可。
二鬼悠、Dao接口代理
我們的Dao接口并沒(méi)有實(shí)現(xiàn)類删性,那么,我們?cè)谡{(diào)用它的時(shí)候焕窝,它是怎樣最終執(zhí)行到我們的SQL語(yǔ)句的呢蹬挺?
首先,我們?cè)赟pring配置文件中它掂,一般會(huì)這樣配置(項(xiàng)目是基于SpringBoot的):
@Autowired
private DataSource dataSource;
private String mapper = "classpath:com/xx/xxx/mapper/**/*Mapper.xml"; //xml掃描路徑
@Bean
public SqlSessionFactory sqlSessionFactory() throws Exception {
final SqlSessionFactoryBean sqlSessionFactoryBean = new SqlSessionFactoryBean();
MybatisSqlSessionFactoryBean bean = new MybatisSqlSessionFactoryBean();
sqlSessionFactoryBean.setDataSource(dataSource);
sqlSessionFactoryBean.setMapperLocations(new PathMatchingResourcePatternResolver().getResources(mapper));
return sqlSessionFactoryBean.getObject();
}
作用是將包路徑下的所有類注冊(cè)到Spring Bean中巴帮,并且將它們的beanClass設(shè)置為MapperFactoryBean溯泣。MapperFactoryBean實(shí)現(xiàn)了FactoryBean接口,俗稱工廠Bean榕茧。那么垃沦,當(dāng)我們通過(guò)@Autowired注入這個(gè)Dao接口的時(shí)候,返回的對(duì)象就是MapperFactoryBean這個(gè)工廠Bean中的getObject()方法對(duì)象用押。
那么肢簿,這個(gè)方法干了些什么呢?
簡(jiǎn)單來(lái)說(shuō)蜻拨,它就是通過(guò)JDK動(dòng)態(tài)代理池充,返回了一個(gè)Dao接口的代理對(duì)象,這個(gè)代理對(duì)象的處理器是MapperProxy對(duì)象缎讼。所有收夸,我們通過(guò)@Autowired注入Dao接口的時(shí)候,注入的就是這個(gè)代理對(duì)象休涤,我們調(diào)用到Dao接口的方法時(shí)咱圆,則會(huì)調(diào)用到MapperProxy對(duì)象的invoke方法。
三功氨、執(zhí)行
如上所述序苏,當(dāng)我們調(diào)用Dao接口方法的時(shí)候,實(shí)際調(diào)用到代理對(duì)象的invoke方法捷凄。 在這里忱详,實(shí)際上調(diào)用的就是SqlSession里面的東西了。
public class DefaultSqlSession implements SqlSession {
public <E> List<E> selectList(String statement, Object parameter, RowBounds rowBounds) {
try {
MappedStatement ms = configuration.getMappedStatement(statement);
return executor.query(ms,
wrapCollection(parameter), rowBounds, Executor.NO_RESULT_HANDLER);
}
}
}
看到以上代碼匈睁,說(shuō)明我們想的不錯(cuò)。它就是通過(guò)statement全限定類型+方法名拿到MappedStatement 對(duì)象桶错,然后通過(guò)執(zhí)行器Executor去執(zhí)行具體SQL并返回航唆。