溫馨提示×

溫馨提示×

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

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

使用MyBatis如何查詢SELECT

發(fā)布時(shí)間:2020-11-06 16:45:47 來源:億速云 閱讀:246 作者:Leah 欄目:開發(fā)技術(shù)

這篇文章將為大家詳細(xì)講解有關(guān)使用MyBatis如何查詢SELECT,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對相關(guān)知識有一定的了解。

1、返回一個(gè)LIST

<!-- public List<Employee> getEmpsByLastNameLike(String lastName); -->
  <!--resultType:如果返回的是一個(gè)集合,要寫集合中元素的類型 -->
  <select id="getEmpsByLastNameLike" resultType="com.atguigu.mybatis.bean.Employee">
    select * from tbl_employee where last_name like #{lastName}
  </select>

2、將查詢記錄封裝為一個(gè)Map

<!--public Map<String, Object> getEmpByIdReturnMap(Integer id); -->
   <select id="getEmpByIdReturnMap" resultType="map">
     select * from tbl_employee where id=#{id}
   </select>

返回一條記錄的map;key就是列名,值就是對應(yīng)的值。

3、多條記錄封裝為一個(gè)map

@MapKey("id")
public Map<Integer, Employee> getEmpByLastNameLikeReturnMap(String lastName);

   <select id="getEmpByLastNameLikeReturnMap" resultType="com.atguigu.mybatis.bean.Employee">
     select * from tbl_employee where last_name like #{lastName}
   </select>

  Map<Integer,Employee>:鍵是這條記錄的主鍵,值是記錄封裝后的javaBean。

  @MapKey:告訴mybatis封裝這個(gè)map的時(shí)候使用哪個(gè)屬性作為map的key。

4、多條件查詢  

public Employee getEmpByIdAndLastName(@Param("id")Integer id,@Param("lastName")String lastName);

   <select id="getEmpByIdAndLastName" resultType="com.atguigu.mybatis.bean.Employee">
     select * from tbl_employee where id = #{id} and last_name=#{lastName}
   </select>

  @Param("id")標(biāo)注查詢條件的key,查詢條件都會(huì)封裝為map。id為key,value為參數(shù)所對應(yīng)的值。

5、插入操作(自增主鍵mysql

<insert id="addEmp" parameterType="com.atguigu.mybatis.bean.Employee"
    useGeneratedKeys="true" keyProperty="id" databaseId="mysql">
    insert into tbl_employee(last_name,email,gender) 
    values(#{lastName},#{email},#{gender})
</insert>

   獲取自增主鍵的值:

    mysql支持自增主鍵,自增主鍵值的獲取,mybatis也是利用statement.getGenreatedKeys();

    useGeneratedKeys="true";使用自增主鍵獲取主鍵值策略

    keyProperty;指定對應(yīng)的主鍵屬性,也就是mybatis獲取到主鍵值以后,將這個(gè)值封裝給javaBean的哪個(gè)屬性。

6、插入操作(非自增主鍵oracle)

 ?、俜亲栽鲋麈Ioracle BEFORE格式推薦 

<!-- public void addEmp(Employee employee); --><insert id="addEmp" databaseId="oracle">
    <selectKey keyProperty="id" order="BEFORE" resultType="Integer">
      select EMPLOYEES_SEQ.nextval from dual 
    </selectKey>
    insert into employees(EMPLOYEE_ID,LAST_NAME,EMAIL) 
    values(#{id},#{lastName},#{email) 
</insert>

 ?、诜亲栽鲋麈Ioracle AFTER存在并發(fā)有可能不準(zhǔn)確,不推薦

<!-- public void addEmp(Employee employee); --><insert id="addEmp" databaseId="oracle">
    <selectKey keyProperty="id" order="AFTER" resultType="Integer">
       select EMPLOYEES_SEQ.currval from dual 
    </selectKey>
    insert into employees(EMPLOYEE_ID,LAST_NAME,EMAIL) 
    values(#{id},#{lastName},#{email}) 
</insert>

Oracle不支持自增;Oracle使用序列來模擬自增;每次插入的數(shù)據(jù)的主鍵是從序列中拿到的值;如何獲取到這個(gè)值;

使用selectKey:

keyProperty:查出的主鍵值封裝給javaBean的哪個(gè)屬性

order="BEFORE":當(dāng)前sql在插入sql之前運(yùn)行
    AFTER:當(dāng)前sql在插入sql之后運(yùn)行
resultType:查出的數(shù)據(jù)的返回值類型

關(guān)于使用MyBatis如何查詢SELECT就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。

向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