溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

MyBatis如何實(shí)現(xiàn)注冊及獲取Mapper

發(fā)布時(shí)間:2022-03-30 09:00:25 來源:億速云 閱讀:448 作者:小新 欄目:開發(fā)技術(shù)

這篇文章主要為大家展示了“MyBatis如何實(shí)現(xiàn)注冊及獲取Mapper”,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“MyBatis如何實(shí)現(xiàn)注冊及獲取Mapper”這篇文章吧。

一、搭建環(huán)境

1.1 pom.xml

 <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
        </dependency>
        <dependency>
            <groupId>com.baomidou</groupId>
            <artifactId>mybatis-plus-boot-starter</artifactId>
        </dependency>

1.2 BlogMapper.java

public interface BlogMapper {
    List<Blog> selectBlog(String id);
}

1.3 BlogMapper.xml

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
        PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
        "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="mybatis.source.study.BlogMapper">
    <select id="selectBlog" resultType="mybatis.source.study.Blog">
    select * from t_blog where id= #{id}
  </select>
</mapper>

BlogMapper.xml放在resource目錄下與BlogMapper.java包路徑相同的路徑下

1.4 MyBatisDemo.java

public class MyBatisDemo {
    public static void main(String[] args) {
    	//創(chuàng)建數(shù)據(jù)源
        DataSource dataSource = getDataSource();
        TransactionFactory transactionFactory = new JdbcTransactionFactory();
        //創(chuàng)建sql運(yùn)行環(huán)境
        Environment environment = new Environment("development", transactionFactory, dataSource);
        //創(chuàng)建mybatis的所有配置
        Configuration configuration = new Configuration(environment);
        //注冊mapper
        configuration.addMapper(BlogMapper.class);
//        configuration.addInterceptor(new PaginationInterceptor());
		//根據(jù)配置創(chuàng)建sql會話工廠
        SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(configuration);
        SqlSession sqlSession = sqlSessionFactory.openSession();
        BlogMapper mapper = sqlSession.getMapper(BlogMapper.class);
        System.out.println(mapper.selectBlog("001"));
    }

    private static DataSource getDataSource() {
        DruidDataSource druidDataSource = new DruidDataSource();
        druidDataSource.setUrl("jdbc:mysql://localhost:3306/demo?characterEncoding=utf-8&serverTimezone=Asia/Shanghai");
        druidDataSource.setUsername("root");
        druidDataSource.setPassword("root");
        return druidDataSource;
    }

二、addMapper詳細(xì)分析

2.1 MapperRegistry

MyBatis如何實(shí)現(xiàn)注冊及獲取Mapper

這塊就是判斷這個(gè)mapper.xml解析過沒有,解析是在 parser.parse();中做的,來看

MyBatis如何實(shí)現(xiàn)注冊及獲取Mapper

loadXmlResource();根據(jù)xml解析每個(gè)mapper接口的方法,將得到的MapperStatement放進(jìn)了configuration,然后記錄該xml的namespace表示已經(jīng)處理過。具體調(diào)用鏈:

loadXmlResource()&ndash;>xmlParser.parse()&ndash;>configurationElement(parser.evalNode("/mapper"))&ndash;> buildStatementFromContext(context.evalNodes(“select|insert|update|delete”))&ndash;> buildStatementFromContext(list, null)&ndash;>statementParser.parseStatementNode()&ndash;>builderAssistant.addMappedStatement&ndash;>configuration.addMappedStatement(statement);

MyBatis如何實(shí)現(xiàn)注冊及獲取Mapper

parseStatement(method);根據(jù)注解解析每個(gè)mapper接口的方法,因此xml和注解可以同時(shí)使用。但是同一個(gè)方法兩者同時(shí)使用會報(bào)錯(cuò)

MyBatis如何實(shí)現(xiàn)注冊及獲取Mapper

2.2 MapperProxyFactory

MyBatis如何實(shí)現(xiàn)注冊及獲取Mapper

放入knownMappers的是MapperProxyFactory,它是一個(gè)Mapper代理的工廠,這個(gè)工廠提供newInstance方法,產(chǎn)生一個(gè)代理類(也就是BlogMapper接口的代理實(shí)現(xiàn)類),調(diào)用BlogMapper所有的方法將在MapperProxy的invoke方法中執(zhí)行

三、getMapper詳細(xì)分析

getMapper會調(diào)用MapperRegistry的getMapper從knownMappers中獲取代理工廠,再調(diào)用newInstance方法產(chǎn)生一個(gè)代理類MapperProxy。

MyBatis如何實(shí)現(xiàn)注冊及獲取Mapper

3.1 MapperProxy

在執(zhí)行mapper.selectBlog(“001”)時(shí),就會調(diào)用MapperProxy的invoke方法

MyBatis如何實(shí)現(xiàn)注冊及獲取Mapper

根據(jù)method(selectBlog)生成對應(yīng)的MapperMethod,并將MapperMethod放入本地緩存。
mapperMethod.execute(sqlSession, args);執(zhí)行真正的sql邏輯。

3.2 MapperMethod

MyBatis如何實(shí)現(xiàn)注冊及獲取Mapper

MapperMethod的構(gòu)造方法,根據(jù)接口信息、方法信息、配置信息得到SqlCommand(sql名稱、類型)、method(方法簽名),方便后續(xù)執(zhí)行命令、處理結(jié)果集等。

以上是“MyBatis如何實(shí)現(xiàn)注冊及獲取Mapper”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI