您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“MyBatis如何實(shí)現(xiàn)注冊及獲取Mapper”,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“MyBatis如何實(shí)現(xiàn)注冊及獲取Mapper”這篇文章吧。
<dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> </dependency> <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-boot-starter</artifactId> </dependency>
public interface BlogMapper { List<Blog> selectBlog(String id); }
<?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包路徑相同的路徑下
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; }
這塊就是判斷這個(gè)mapper.xml解析過沒有,解析是在 parser.parse();中做的,來看
loadXmlResource();根據(jù)xml解析每個(gè)mapper接口的方法,將得到的MapperStatement放進(jìn)了configuration,然后記錄該xml的namespace表示已經(jīng)處理過。具體調(diào)用鏈:
loadXmlResource()–>xmlParser.parse()–>configurationElement(parser.evalNode("/mapper"))–> buildStatementFromContext(context.evalNodes(“select|insert|update|delete”))–> buildStatementFromContext(list, null)–>statementParser.parseStatementNode()–>builderAssistant.addMappedStatement–>configuration.addMappedStatement(statement);
parseStatement(method);根據(jù)注解解析每個(gè)mapper接口的方法,因此xml和注解可以同時(shí)使用。但是同一個(gè)方法兩者同時(shí)使用會報(bào)錯(cuò)
放入knownMappers的是MapperProxyFactory,它是一個(gè)Mapper代理的工廠,這個(gè)工廠提供newInstance方法,產(chǎn)生一個(gè)代理類(也就是BlogMapper接口的代理實(shí)現(xiàn)類),調(diào)用BlogMapper所有的方法將在MapperProxy的invoke方法中執(zhí)行
getMapper會調(diào)用MapperRegistry的getMapper從knownMappers中獲取代理工廠,再調(diào)用newInstance方法產(chǎn)生一個(gè)代理類MapperProxy。
在執(zhí)行mapper.selectBlog(“001”)時(shí),就會調(diào)用MapperProxy的invoke方法
根據(jù)method(selectBlog)生成對應(yīng)的MapperMethod,并將MapperMethod放入本地緩存。
mapperMethod.execute(sqlSession, args);執(zhí)行真正的sql邏輯。
MapperMethod的構(gòu)造方法,根據(jù)接口信息、方法信息、配置信息得到SqlCommand(sql名稱、類型)、method(方法簽名),方便后續(xù)執(zhí)行命令、處理結(jié)果集等。
以上是“MyBatis如何實(shí)現(xiàn)注冊及獲取Mapper”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(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)容。