轉(zhuǎn)載至https://blog.csdn.net/eaphyy/article/details/71190441污抬,僅供學(xué)習(xí)和參考汞贸,侵刪
1、#{}和${}的區(qū)別是什么印机?
{}是預(yù)編譯處理矢腻,${}是字符串替換。
Mybatis在處理#{}時(shí)射赛,會(huì)將sql中的#{}替換為?號(hào)多柑,調(diào)用PreparedStatement的set方法來賦值;
Mybatis在處理{}時(shí)楣责,就是把{}替換成變量的值竣灌。
使用#{}可以有效的防止SQL注入,提高系統(tǒng)安全性秆麸。
2初嘹、當(dāng)實(shí)體類中的屬性名和表中的字段名不一樣 ,怎么辦 沮趣?
第1種: 通過在查詢的sql語句中定義字段名的別名屯烦,讓字段名的別名和實(shí)體類的屬性名一致
<select id=”selectorder” parametertype=”int” resultetype=”me.gacl.domain.order”>
select order_id id, order_no as orderNo ,order_price price
form orders where order_id=#{id};
</select>
第2種: 通過<resultMap>來映射字段名和實(shí)體類屬性名的一一對(duì)應(yīng)的關(guān)系
<select id="getOrder" parameterType="int" resultMap="orderresultmap">
select * from orders where order_id=#{id}
</select>
<resultMap type=”me.gacl.domain.order” id=”orderresultmap”>
<!–用id屬性來映射主鍵字段–>
<id property=”id” column=”order_id”>
<!–用result屬性來映射非主鍵字段,property為實(shí)體類屬性名兔毒,column為數(shù)據(jù)表中的屬性–>
<result property = “orderno” column =”order_no”/>
<result property=”price” column=”order_price” />
</reslutMap>
3漫贞、 模糊查詢like語句該怎么寫?
第1種:在Java代碼中添加sql通配符。
string wildcardname = “%smi%”;
list<name> names = mapper.selectlike(wildcardname);
<select id=”selectlike”>
select * from foo where bar like #{value}
</select>
第2種:在sql語句中拼接通配符育叁,會(huì)引起sql注入
string wildcardname = “smi”;
list<name> names = mapper.selectlike(wildcardname);
<select id=”selectlike”>
select * from foo where bar like "%"#{value}"%"
</select>
4、通常一個(gè)Xml映射文件芍殖,都會(huì)寫一個(gè)Dao接口與之對(duì)應(yīng)豪嗽,請(qǐng)問,這個(gè)Dao接口的工作原理是什么?Dao接口里的方法龟梦,參數(shù)不同時(shí)隐锭,方法能重載嗎?
Dao接口计贰,就是人們常說的Mapper接口钦睡,接口的全限名,就是映射文件中的namespace的值躁倒,接口的方法名荞怒,就是映射文件中MappedStatement的id值,接口方法內(nèi)的參數(shù)秧秉,就是傳遞給sql的參數(shù)褐桌。Mapper接口是沒有實(shí)現(xiàn)類的,當(dāng)調(diào)用接口方法時(shí)象迎,接口全限名+方法名拼接字符串作為key值荧嵌,可唯一定位一個(gè)MappedStatement,舉例:com.mybatis3.mappers.StudentDao.findStudentById砾淌,可以唯一找到namespace為com.mybatis3.mappers.StudentDao下面id = findStudentById的MappedStatement啦撮。在Mybatis中,每一個(gè)<select>汪厨、<insert>逻族、<update>、<delete>標(biāo)簽骄崩,都會(huì)被解析為一個(gè)MappedStatement對(duì)象聘鳞。
Dao接口里的方法,是不能重載的要拂,因?yàn)槭侨廾?方法名的保存和尋找策略抠璃。
Dao接口的工作原理是JDK動(dòng)態(tài)代理,Mybatis運(yùn)行時(shí)會(huì)使用JDK動(dòng)態(tài)代理為Dao接口生成代理proxy對(duì)象脱惰,代理對(duì)象proxy會(huì)攔截接口方法搏嗡,轉(zhuǎn)而執(zhí)行MappedStatement所代表的sql,然后將sql執(zhí)行結(jié)果返回拉一。
5采盒、Mybatis是如何進(jìn)行分頁的?分頁插件的原理是什么蔚润?
Mybatis使用RowBounds對(duì)象進(jìn)行分頁磅氨,它是針對(duì)ResultSet結(jié)果集執(zhí)行的內(nèi)存分頁,而非物理分頁嫡纠,可以在sql內(nèi)直接書寫帶有物理分頁的參數(shù)來完成物理分頁功能烦租,也可以使用分頁插件來完成物理分頁延赌。
分頁插件的基本原理是使用Mybatis提供的插件接口,實(shí)現(xiàn)自定義插件叉橱,在插件的攔截方法內(nèi)攔截待執(zhí)行的sql挫以,然后重寫sql,根據(jù)dialect方言窃祝,添加對(duì)應(yīng)的物理分頁語句和物理分頁參數(shù)掐松。
6、Mybatis是如何將sql執(zhí)行結(jié)果封裝為目標(biāo)對(duì)象并返回的粪小?都有哪些映射形式大磺?
答:第一種是使用<resultMap>標(biāo)簽,逐一定義列名和對(duì)象屬性名之間的映射關(guān)系糕再。第二種是使用sql列的別名功能量没,將列別名書寫為對(duì)象屬性名,比如T_NAME AS NAME突想,對(duì)象屬性名一般是name殴蹄,小寫,但是列名不區(qū)分大小寫猾担,Mybatis會(huì)忽略列名大小寫袭灯,智能找到與之對(duì)應(yīng)對(duì)象屬性名,你甚至可以寫成T_NAME AS NaMe绑嘹,Mybatis一樣可以正常工作稽荧。
有了列名與屬性名的映射關(guān)系后,Mybatis通過反射創(chuàng)建對(duì)象工腋,同時(shí)使用反射給對(duì)象的屬性逐一賦值并返回姨丈,那些找不到映射關(guān)系的屬性,是無法完成賦值的擅腰。
7蟋恬、如何執(zhí)行批量插入?
首先,創(chuàng)建一個(gè)簡(jiǎn)單的insert語句:
<insert id=”insertname”>
insert into names (name) values (#{value})
</insert>
然后在java代碼中像下面這樣執(zhí)行批處理插入:
list<string> names = new arraylist();
names.add(“fred”);
names.add(“barney”);
names.add(“betty”);
names.add(“wilma”);
// 注意這里 executortype.batch
sqlsession sqlsession = sqlsessionfactory.opensession(executortype.batch);
try {
namemapper mapper = sqlsession.getmapper(namemapper.class);
for (string name : names) {
mapper.insertname(name);
}
sqlsession.commit();
} finally {
sqlsession.close();
}
8、如何獲取自動(dòng)生成的(主)鍵值?
insert 方法總是返回一個(gè)int值 - 這個(gè)值代表的是插入的行數(shù)趁冈。
而自動(dòng)生成的鍵值在 insert 方法執(zhí)行完后可以被設(shè)置到傳入的參數(shù)對(duì)象中歼争。
示例:
<insert id=”insertname” usegeneratedkeys=”true” keyproperty=”id”>
insert into names (name) values (#{name})
</insert>
name name = new name();
name.setname(“fred”);
int rows = mapper.insertname(name);
// 完成后,id已經(jīng)被設(shè)置到對(duì)象中
system.out.println(“rows inserted = ” + rows);
system.out.println(“generated key value = ” + name.getid());
9、在mapper中如何傳遞多個(gè)參數(shù)?
第1種:
//DAO層的函數(shù)
Public UserselectUser(String name,String area);
//對(duì)應(yīng)的xml,#{0}代表接收的是dao層中的第一個(gè)參數(shù)渗勘,#{1}代表dao層中第二參數(shù)沐绒,更多參數(shù)一致往后加即可。
<select id="selectUser"resultMap="BaseResultMap">
select * fromuser_user_t whereuser_name = #{0} anduser_area=#{1}
</select>
第2種: 使用 @param 注解:
import org.apache.ibatis.annotations.param;
public interface usermapper {
user selectuser(@param(“username”) string username,
@param(“hashedpassword”) string hashedpassword);
}
然后,就可以在xml像下面這樣使用(推薦封裝為一個(gè)map,作為單個(gè)參數(shù)傳遞給mapper):
<select id=”selectuser” resulttype=”user”>
select id, username, hashedpassword
from some_table
where username = #{username}
and hashedpassword = #{hashedpassword}
</select>
第3種:使用Map,但代碼可讀性不高
第4種:傳入POJO對(duì)象
10、Mybatis動(dòng)態(tài)sql是做什么的逊谋?都有哪些動(dòng)態(tài)sql?能簡(jiǎn)述一下動(dòng)態(tài)sql的執(zhí)行原理不申眼?
Mybatis動(dòng)態(tài)sql可以讓我們?cè)赬ml映射文件內(nèi)瞒津,以標(biāo)簽的形式編寫動(dòng)態(tài)sql蝉衣,完成邏輯判斷和動(dòng)態(tài)拼接sql的功能括尸。
Mybatis提供了9種動(dòng)態(tài)sql標(biāo)簽:trim|where|set|foreach|if|choose|when|otherwise|bind。
其執(zhí)行原理為病毡,使用OGNL從sql參數(shù)對(duì)象中計(jì)算表達(dá)式的值濒翻,根據(jù)表達(dá)式的值動(dòng)態(tài)拼接sql,以此來完成動(dòng)態(tài)sql的功能啦膜。
11有送、Mybatis的Xml映射文件中,不同的Xml映射文件僧家,id是否可以重復(fù)雀摘?
不同的Xml映射文件,如果配置了namespace八拱,那么id可以重復(fù)阵赠;如果沒有配置namespace,那么id不能重復(fù)肌稻;畢竟namespace不是必須的清蚀,只是最佳實(shí)踐而已。
原因就是namespace+id是作為Map<String, MappedStatement>的key使用的爹谭,如果沒有namespace枷邪,就剩下id,那么诺凡,id重復(fù)會(huì)導(dǎo)致數(shù)據(jù)互相覆蓋东揣。有了namespace,自然id就可以重復(fù)腹泌,namespace不同嘶卧,namespace+id自然也就不同。
12真屯、為什么說Mybatis是半自動(dòng)ORM映射工具脸候?它與全自動(dòng)的區(qū)別在哪里?
Hibernate屬于全自動(dòng)ORM映射工具绑蔫,使用Hibernate查詢關(guān)聯(lián)對(duì)象或者關(guān)聯(lián)集合對(duì)象時(shí)运沦,可以根據(jù)對(duì)象關(guān)系模型直接獲取,所以它是全自動(dòng)的配深。而Mybatis在查詢關(guān)聯(lián)對(duì)象或關(guān)聯(lián)集合對(duì)象時(shí)携添,需要手動(dòng)編寫sql來完成,所以篓叶,稱之為半自動(dòng)ORM映射工具烈掠。
13羞秤、 一對(duì)一、一對(duì)多的關(guān)聯(lián)查詢 左敌?
<mapper namespace="com.lcb.mapping.userMapper">
<select id="getClass" parameterType="int" resultMap="ClassesResultMap">
select * from class c,teacher t where c.teacher_id=t.t_id and c.c_id=#{id}
</select>
<resultMap type="com.lcb.user.Classes" id="ClassesResultMap">
<id property="id" column="c_id"/>
<result property="name" column="c_name"/>
<association property="teacher" javaType="com.lcb.user.Teacher">
<id property="id" column="t_id"/>
<result property="name" column="t_name"/>
</association>
</resultMap>
<!--collection 一對(duì)多關(guān)聯(lián)查詢 -->
<select id="getClass2" parameterType="int" resultMap="ClassesResultMap2">
select * from class c,teacher t,student s where c.teacher_id=t.t_id and c.c_id=s.class_id and c.c_id=#{id}
</select>
<resultMap type="com.lcb.user.Classes" id="ClassesResultMap2">
<id property="id" column="c_id"/>
<result property="name" column="c_name"/>
<association property="teacher" javaType="com.lcb.user.Teacher">
<id property="id" column="t_id"/>
<result property="name" column="t_name"/>
</association>
<collection property="student" ofType="com.lcb.user.Student">
<id property="id" column="s_id"/>
<result property="name" column="s_name"/>
</collection>
</resultMap>
</mapper>