mybatis常見面試題彙總

一、#{}和${}的區別是什麼?java

#{}是預編譯處理,${}是字符串替換。
Mybatis在處理#{}時,會將sql中的#{}替換爲?號,調用PreparedStatement的set方法來賦值;
Mybatis在處理${}時,就是把${}替換成變量的值。
使用#{}能夠有效的防止SQL注入,提升系統安全性。
二、當實體類中的屬性名和表中的字段名不同 ,怎麼辦 ?sql

第1種: 經過在查詢的sql語句中定義字段名的別名,讓字段名的別名和實體類的屬性名一致 
    <select id=」selectorder」 parametertype=」int」 resultetype=」me.gacl.domain.order」> 
       select order_id id, order_no orderno ,order_price price form orders where order_id=#{id}; 
    </select> 
第2種: 經過<resultMap>來映射字段名和實體類屬性名的一一對應的關係 
    <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爲實體類屬性名,column爲數據表中的屬性–> 
        <result property = 「orderno」 column =」order_no」/> 
        <result property=」price」 column=」order_price」 /> 
    </reslutMap>
三、 模糊查詢like語句該怎麼寫?apache

第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語句中拼接通配符,會引發sql注入
    string wildcardname = 「smi」; 
    list<name> names = mapper.selectlike(wildcardname);
 
    <select id=」selectlike」> 
     select * from foo where bar like "%"#{value}"%"
    </select>
四、一般一個Xml映射文件,都會寫一個Dao接口與之對應,請問,這個Dao接口的工做原理是什麼?Dao接口裏的方法,參數不一樣時,方法能重載嗎?安全

Dao接口,就是人們常說的Mapper接口,接口的全限名,就是映射文件中的namespace的值,接口的方法名,就是映射文件中MappedStatement的id值,接口方法內的參數,就是傳遞給sql的參數。Mapper接口是沒有實現類的,當調用接口方法時,接口全限名+方法名拼接字符串做爲key值,可惟必定位一個MappedStatement,舉例:com.mybatis3.mappers.StudentDao.findStudentById,能夠惟一找到namespace爲com.mybatis3.mappers.StudentDao下面id = findStudentById的MappedStatement。在Mybatis中,每個<select>、<insert>、<update>、<delete>標籤,都會被解析爲一個MappedStatement對象。
 
Dao接口裏的方法,是不能重載的,由於是全限名+方法名的保存和尋找策略。
 
Dao接口的工做原理是JDK動態代理,Mybatis運行時會使用JDK動態代理爲Dao接口生成代理proxy對象,代理對象proxy會攔截接口方法,轉而執行MappedStatement所表明的sql,而後將sql執行結果返回。
五、Mybatis是如何進行分頁的?分頁插件的原理是什麼?session

Mybatis使用RowBounds對象進行分頁,它是針對ResultSet結果集執行的內存分頁,而非物理分頁,能夠在sql內直接書寫帶有物理分頁的參數來完成物理分頁功能,也可使用分頁插件來完成物理分頁。
 
分頁插件的基本原理是使用Mybatis提供的插件接口,實現自定義插件,在插件的攔截方法內攔截待執行的sql,而後重寫sql,根據dialect方言,添加對應的物理分頁語句和物理分頁參數。
六、Mybatis是如何將sql執行結果封裝爲目標對象並返回的?都有哪些映射形式?mybatis

答:第一種是使用<resultMap>標籤,逐必定義列名和對象屬性名之間的映射關係。第二種是使用sql列的別名功能,將列別名書寫爲對象屬性名,好比T_NAME AS NAME,對象屬性名通常是name,小寫,可是列名不區分大小寫,Mybatis會忽略列名大小寫,智能找到與之對應對象屬性名,你甚至能夠寫成T_NAME AS NaMe,Mybatis同樣能夠正常工做。
 
有了列名與屬性名的映射關係後,Mybatis經過反射建立對象,同時使用反射給對象的屬性逐一賦值並返回,那些找不到映射關係的屬性,是沒法完成賦值的。
七、如何執行批量插入?app

首先,建立一個簡單的insert語句: 
    <insert id=」insertname」> 
     insert into names (name) values (#{value}) 
    </insert>
而後在java代碼中像下面這樣執行批處理插入: 
    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(); 
    }
八、如何獲取自動生成的(主)鍵值?dom

insert 方法老是返回一個int值 - 這個值表明的是插入的行數。 
而自動生成的鍵值在 insert 方法執行完後能夠被設置到傳入的參數對象中。 
示例: 
    <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已經被設置到對象中 
    system.out.println(「rows inserted = 」 + rows); 
    system.out.println(「generated key value = 」 + name.getid());
九、在mapper中如何傳遞多個參數?函數

第1種:
//DAO層的函數
 
Public UserselectUser(String name,String area);  
//對應的xml,#{0}表明接收的是dao層中的第一個參數,#{1}表明dao層中第二參數,更多參數一致日後加便可。
 
<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像下面這樣使用(推薦封裝爲一個map,做爲單個參數傳遞給mapper): 
    <select id=」selectuser」 resulttype=」user」> 
         select id, username, hashedpassword 
         from some_table 
         where username = #{username} 
         and hashedpassword = #{hashedpassword} 
    </select>
十、Mybatis動態sql是作什麼的?都有哪些動態sql?能簡述一下動態sql的執行原理不?工具

Mybatis動態sql可讓咱們在Xml映射文件內,以標籤的形式編寫動態sql,完成邏輯判斷和動態拼接sql的功能。
Mybatis提供了9種動態sql標籤:trim|where|set|foreach|if|choose|when|otherwise|bind。
其執行原理爲,使用OGNL從sql參數對象中計算表達式的值,根據表達式的值動態拼接sql,以此來完成動態sql的功能。
十一、Mybatis的Xml映射文件中,不一樣的Xml映射文件,id是否能夠重複?

不一樣的Xml映射文件,若是配置了namespace,那麼id能夠重複;若是沒有配置namespace,那麼id不能重複;畢竟namespace不是必須的,只是最佳實踐而已。
 
緣由就是namespace+id是做爲Map<String, MappedStatement>的key使用的,若是沒有namespace,就剩下id,那麼,id重複會致使數據互相覆蓋。有了namespace,天然id就能夠重複,namespace不一樣,namespace+id天然也就不一樣。
十二、爲何說Mybatis是半自動ORM映射工具?它與全自動的區別在哪裏?

Hibernate屬於全自動ORM映射工具,使用Hibernate查詢關聯對象或者關聯集合對象時,能夠根據對象關係模型直接獲取,因此它是全自動的。而Mybatis在查詢關聯對象或關聯集合對象時,須要手動編寫sql來完成,因此,稱之爲半自動ORM映射工具。
1三、 一對1、一對多的關聯查詢 ?

<mapper namespace="com.lcb.mapping.userMapper">       <!--association  一對一關聯查詢 -->       <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  一對多關聯查詢 -->       <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>   

相關文章
相關標籤/搜索