中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

如何解析MyBatis Mapper接受參數的四種方式代碼

發布時間:2021-10-15 15:33:53 來源:億速云 閱讀:89 作者:柒染 欄目:編程語言

本篇文章給大家分享的是有關如何解析MyBatis Mapper接受參數的四種方式代碼,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

對于單個參數而言,可以直接寫#{param},這里的占位符名稱沒有限制,反正就一個參數一個占位符,不需要指定名稱

對于多個參數,有常用的四種方式

根據位置排序號

public interface UserDao {  public Integer addUser(String username, String password);}

對應mapper文件中的片段

<insert id="addUser">  <!-- 按照參數位置從param1開始排序 -->    insert into users(username, password) values(#{param1}, #{param2}) </insert>

POJO對象傳入

public interface UserDao {  public Integer addUser(String username, String password);}

對應mapper文件中的片段

<insert id="addUser">  <!-- 根據屬性名訪問數據 -->    insert into users(username, password) values(#{username}, #{password}) </insert>

Map對象傳入

public interface UserDao {  // mapper中#{}則通過map中的key訪問  public Integer addUser(Map<String, Object> map);}

對應mapper文件中的片段

<insert id="addUser">    insert into users(username, password) values(#{username}, #{password}) </insert>

@Param注解(Map對象的另一種形式)

public interface UserDao {  // 注解中的值就是map的key  public Integer addUser(@Param("name")String username, @Param("word")String password);}

對應mapper文件中的片段

<insert id="addUser">    insert into users(username, password) values(#{name}, #{word}) </insert>

以上就是如何解析MyBatis Mapper接受參數的四種方式代碼,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

克山县| 镇巴县| 手机| 大城县| 静安区| 浙江省| 横峰县| 泉州市| 岢岚县| 越西县| 永安市| 师宗县| 新安县| 乌兰县| 清流县| 勐海县| 容城县| 桐柏县| 康定县| 北辰区| 康保县| 泰宁县| 武穴市| 梅州市| 开阳县| 紫金县| 小金县| 郧西县| 潍坊市| 双城市| 承德县| 高邮市| 高淳县| 海晏县| 竹山县| 靖江市| 沐川县| 沙河市| 德阳市| 阿勒泰市| 吉木乃县|