您好,登錄后才能下訂單哦!
這篇文章主要介紹Mybatis中參數(shù)傳遞的方法有哪些,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
我們使用SpringBoot + Mybatis + MySql來(lái)搭建實(shí)例demo
springboot: 2.2.0.RELEASE
mysql: 5.7.22
<dependencies> <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <version>2.2.0</version> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> </dependency> </dependencies>
核心的依賴mybatis-spring-boot-starter,至于版本選擇,到mvn倉(cāng)庫(kù)中,找最新的
另外一個(gè)不可獲取的就是db配置信息,appliaction.yml
spring: datasource: url: jdbc:mysql://127.0.0.1:3306/story?useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=Asia/Shanghai username: root password:
用于測(cè)試的數(shù)據(jù)庫(kù)
CREATE TABLE `money` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(20) NOT NULL DEFAULT '' COMMENT '用戶名', `money` int(26) NOT NULL DEFAULT '0' COMMENT '錢', `is_deleted` tinyint(1) NOT NULL DEFAULT '0', `create_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '創(chuàng)建時(shí)間', `update_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新時(shí)間', PRIMARY KEY (`id`), KEY `name` (`name`) ) ENGINE=InnoDB AUTO_INCREMENT=551 DEFAULT CHARSET=utf8mb4;
接下來(lái)我們看一下Mapper接口中的參數(shù)與xml文件中的參數(shù)映射的幾種姿勢(shì);關(guān)于mybatis項(xiàng)目的搭建,這里就略過(guò),重點(diǎn)信息有下面幾個(gè)
數(shù)據(jù)庫(kù)實(shí)體對(duì)象
@Data public class MoneyPo { private Integer id; private String name; private Long money; private Integer isDeleted; private Timestamp createAt; private Timestamp updateAt; private Integer cnt; }
mapper接口
@Mapper public interface MoneyMapper { }
xml文件,在資源文件夾下,目錄層級(jí)與mapper接口的包路徑完全一致(遵循默認(rèn)的Mapper接口與xml文件綁定關(guān)系,詳情查看SpringBoot系列Mybatis之Mapper接口與Sql綁定幾種姿勢(shì))
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> <mapper namespace="com.git.hui.boot.mybatis.mapper.MoneyMapper"> <resultMap id="BaseResultMap" type="com.git.hui.boot.mybatis.entity.MoneyPo"> <id column="id" property="id" jdbcType="INTEGER"/> <result column="name" property="name" jdbcType="VARCHAR"/> <result column="money" property="money" jdbcType="INTEGER"/> <result column="is_deleted" property="isDeleted" jdbcType="TINYINT"/> <result column="create_at" property="createAt" jdbcType="TIMESTAMP"/> <result column="update_at" property="updateAt" jdbcType="TIMESTAMP"/> </resultMap> <sql id="money_po"> id, name, money, is_deleted, create_at, update_at </sql> </mapper>
在接口的參數(shù)上添加@Param注解,在內(nèi)部指定傳遞給xml的參數(shù)名
一個(gè)簡(jiǎn)單的case如下
int addMoney(@Param("id") int id, @Param("money") int money);
重點(diǎn)關(guān)注上面的參數(shù)
通過(guò)@Param來(lái)指定傳遞給xml時(shí)的參數(shù)名
對(duì)應(yīng)的xml文件中的sql如下,使用#{}來(lái)實(shí)現(xiàn)參數(shù)綁定
<update id="addMoney" parameterType="java.util.Map"> update money set money=money+#{money} where id=#{id} </update>
接下來(lái)我們看一下不使用@Param注解時(shí),默認(rèn)場(chǎng)景下,xml中應(yīng)該如何指定參數(shù);因?yàn)閱螀?shù)與多參數(shù)的實(shí)際結(jié)果不一致,這里分開進(jìn)行說(shuō)明
單參數(shù)場(chǎng)景下,xml中的參數(shù)名,可以用任意值來(lái)表明
mapper接口定義如下
/** * 單個(gè)參數(shù)時(shí),默認(rèn)可以直接通過(guò)參數(shù)名來(lái)表示,實(shí)際上#{}中用任意一個(gè)值都可以,沒(méi)有任何限制,都表示的是這個(gè)唯一的參數(shù) * @param id * @return */ MoneyPo findById(int id); /** * 演示xml中的 #{} 為一個(gè)匹配補(bǔ)上的字符串,也可以正確的實(shí)現(xiàn)參數(shù)替換 * @param id * @return */ MoneyPo findByIdV2(int id);
對(duì)應(yīng)的xml文件內(nèi)容如下
<select id="findById" parameterType="java.lang.Integer" resultMap="BaseResultMap"> select <include refid="money_po"/> from money where id=#{id} </select> <select id="findByIdV2" parameterType="java.lang.Integer" resultMap="BaseResultMap"> select <include refid="money_po"/> from money where id=#{dd} </select>
重點(diǎn)看一下上面的findByIdV2,上面的sql中傳參使用的是 #{dd},和mapper接口中的參數(shù)名并不相同,但是最終的結(jié)果卻沒(méi)有什么區(qū)別
當(dāng)參數(shù)個(gè)數(shù)超過(guò)1個(gè)的時(shí)候,#{}中的參數(shù),有兩種方式
param1…N: 其中n代表的接口中的第幾個(gè)參數(shù)
arg0…N
/** * 不指定參數(shù)名時(shí),mybatis自動(dòng)封裝一個(gè) param1 ... paramN的Map,其中n表示第n個(gè)參數(shù) * 也可以使用 arg0...n 來(lái)指代具體的參數(shù) * * @param name * @param money * @return */ List<MoneyPo> findByNameAndMoney(String name, Integer money);
對(duì)應(yīng)的xml如下
<select id="findByNameAndMoney" resultMap="BaseResultMap"> select <include refid="money_po"/> -- from money where name=#{param1} and money=#{param2} from money where name=#{arg0} and money=#{arg1} </select>
注意上面的xml中,兩種傳參都是可以的,當(dāng)然不建議使用這種默認(rèn)的方式來(lái)傳參,因?yàn)榉浅2恢庇^,對(duì)于后續(xù)的維護(hù)很不優(yōu)雅
如果參數(shù)類型并不是簡(jiǎn)單類型,當(dāng)時(shí)Map類型時(shí),在xml文件中的參數(shù),可以直接使用map中對(duì)應(yīng)的key來(lái)指代
/** * 參數(shù)類型為map時(shí),直接使用key即可 * @param map * @return */ List<MoneyPo> findByMap(Map<String, Object> map);
對(duì)應(yīng)的xml如下
<select id="findByMap" resultMap="BaseResultMap"> select <include refid="money_po"/> from money <trim prefix="WHERE" prefixOverrides="AND | OR"> <if test="id != null"> id = #{id} </if> <if test="name != null"> AND name=#{name} </if> <if test="money != null"> AND money=#{money} </if> </trim> </select>
另外一種常見(jiàn)的case是傳參為簡(jiǎn)單的實(shí)體對(duì)象,這個(gè)時(shí)候xml中的參數(shù)也可以直接使用對(duì)象的fieldName來(lái)指代,和map的使用方式差不多
/** * 參數(shù)類型為java對(duì)象,同樣直接使用field name即可 * @param po * @return */ List<MoneyPo> findByPo(MoneyPo po);
對(duì)應(yīng)的xml文件如下
<select id="findByPo" parameterType="com.git.hui.boot.mybatis.entity.MoneyPo" resultMap="BaseResultMap"> select <include refid="money_po"/> from money <trim prefix="WHERE" prefixOverrides="AND | OR"> <if test="id != null"> id = #{id} </if> <if test="name != null"> AND name=#{name} </if> <if test="money != null"> AND money=#{money} </if> </trim> </select>
當(dāng)參數(shù)有多個(gè),其中部分為簡(jiǎn)單類型,部分為Map,這樣的場(chǎng)景下參數(shù)如何處理呢?
簡(jiǎn)單類型遵循上面的規(guī)則
map參數(shù)的傳參,使用前綴 + “.” + key的方式
一個(gè)實(shí)例如下
List<MoneyPo> findByIdOrCondition(@Param("id") int id, @Param("map") Map<String, Object> map); List<MoneyPo> findByIdOrConditionV2(int id, Map<String, Object> map);
對(duì)應(yīng)的xml如下
<select id="findByIdOrCondition" resultMap="BaseResultMap"> select <include refid="money_po"/> from money where id = #{id} or `name`=#{map.name} </select> <select id="findByIdOrConditionV2" resultMap="BaseResultMap"> select <include refid="money_po"/> from money where id = #{param1} or `name`=#{param2.name} </select>
以上是“Mybatis中參數(shù)傳遞的方法有哪些”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。