您好,登錄后才能下訂單哦!
這篇文章主要介紹“Mybatis基礎(chǔ)知識點(diǎn)有哪些”,在日常操作中,相信很多人在Mybatis基礎(chǔ)知識點(diǎn)有哪些問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Mybatis基礎(chǔ)知識點(diǎn)有哪些”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!
(1)創(chuàng)建實(shí)體類
準(zhǔn)備實(shí)體類Category,用于映射表category_
public class category{ private int id; private String name; setter、getter方法 }
(2)配置文件mybatis-config.xml,相當(dāng)于hibernate.cfg.xml
<configuration> <typeAliases> <package name="com.how2java.pojo"/> </typeAliases> <!--自動掃描com.how2java.pojo下的類型,使得在后續(xù)配置文件Category.xml中使用resultType的時候,可以直接使用Category,而不必寫全com.how2java.pojo.Category--> <environments default="development"> <environment id="development"> <transactionManager type="JDBC"/> <dataSource type="POOLED"> <property name="driver" value="com.mysql.jdbc.Driver"/> <property name="url" value="jdbc:mysql://localhost:3306/how2java? characterEncoding=UTF-8"/> <property name="username" value="root"/> <property name="password" value="******"/> </dataSource> </environment> </environments> <!--映射Category.xml--> <mappers> <mapper resource="com/how2java/pojo/Category.xml"/> </mappers> </configuration>
(3)配置文件Category.xml
<!--表示命名空間是com.how2java.pojo--> <mapper namespace="com.how2java.pojo"> <!--sql語句用id: listCategory 進(jìn)行,標(biāo)示以供后續(xù)代碼調(diào)用,resultType="Category" 表示返回的數(shù)據(jù)和Category關(guān)聯(lián)起來--> <select id="listCategory" resultType="Category"> select * from category_ <!--這里本應(yīng)該使用的是 com.how2java.pojo.Category, 但是因?yàn)樯弦徊脚渲昧藙e名,所以直接使用Category就行了--> </select> </mapper>
(4)測試類TestMybatis.java
public class TestMybatis { public static void main(String[] args) throws IOException { String resource = "mybatis-config.xml"; InputStream inputStream = Resources.getResourceAsStream(resource); //根據(jù)配置文件mybatis-config.xml得到sqlSessionFactory SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream); //然后再根據(jù)sqlSessionFactory 得到session SqlSession session=sqlSessionFactory.openSession(); //通過session的selectList方法,調(diào)用sql語句listCategory。listCategory這個就是在配置文件Category.xml中那條sql語句設(shè)置的id。 List<Category> cs=session.selectList("listCategory"); //執(zhí)行完畢之后,得到一個Category集合,遍歷即可看到數(shù)據(jù) for (Category c : cs) { System.out.println(c.getName()); } } }
(5)基本原理
1. 應(yīng)用程序找Mybatis要數(shù)據(jù)
2. mybatis從數(shù)據(jù)庫中找來數(shù)據(jù)
2.1 通過mybatis-config.xml 定位哪個數(shù)據(jù)庫
2.2 通過Category.xml執(zhí)行對應(yīng)的select語句
2.3 基于Category.xml把返回的數(shù)據(jù)庫記錄封裝在Category對象中
2.4 把多個Category對象裝在一個Category集合中
3. 返回一個Category集合
到此,關(guān)于“Mybatis基礎(chǔ)知識點(diǎn)有哪些”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。