您好,登錄后才能下訂單哦!
小編給大家分享一下Fluent Mybatis中Update語(yǔ)法怎么用,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!
還是用之前在數(shù)據(jù)庫(kù)存的數(shù)據(jù),數(shù)據(jù)如下:
fm的update簡(jiǎn)單寫法可以直接使用is()來(lái)對(duì)表字段進(jìn)行賦值,如果需要將字段設(shè)置為Null的話,直接使用isNull()方法。
接口層代碼添加
/** * 簡(jiǎn)單的更新語(yǔ)法 * * @return */ Integer updateSimple();
實(shí)現(xiàn)類代碼添加
@Override public Integer updateSimple() { return testFluentMybatisMapper.updateBy( new TestFluentMybatisUpdate() .set .name() .is("何九") .set .age() .isNull() .end() .where .id() .eq(2) .end()); }
控制層代碼添加
@Autowired private IUpdateService updateService; @ApiOperation(value = "簡(jiǎn)單語(yǔ)法", notes = "簡(jiǎn)單語(yǔ)法") @RequestMapping(value = "/simple", method = RequestMethod.GET) @ResponseBody public Result<Integer> updateSimple() { try { return Result.ok(updateService.updateSimple()); } catch (Exception exception) { return Result.error(ErrorCode.BASE_ERROR_CODE.getCode(), exception.getMessage(), null); } }
驗(yàn)證一下
代碼說(shuō)明
1、可以看一下代碼執(zhí)行的具體sql,如下:
2021-11-23 13:41:20.277 DEBUG 20820 --- [nio-8090-exec-1] c.h.f.f.m.T.updateBy : ==> Preparing: UPDATE `test_fluent_mybatis` SET `name` = ?, `age` = ? WHERE `id` = ? 2021-11-23 13:41:20.464 DEBUG 20820 --- [nio-8090-exec-1] c.h.f.f.m.T.updateBy : ==> Parameters: 何九(String), null, 2(Integer) 2021-11-23 13:41:20.470 DEBUG 20820 --- [nio-8090-exec-1] c.h.f.f.m.T.updateBy : <== Updates: 1
fm支持使用表實(shí)體進(jìn)行數(shù)據(jù)更新,但是有一些限制,具體看我后面的代碼說(shuō)明。
接口層代碼添加
/** * 根據(jù)實(shí)體更新語(yǔ)法 * * @param req 實(shí)體參數(shù) * @return */ Integer updateByEntity(TestFluentMybatisEntity req);
實(shí)現(xiàn)類代碼添加
@Override public Integer updateByEntity(TestFluentMybatisEntity req) { return testFluentMybatisMapper.updateBy( new TestFluentMybatisUpdate() .set .byEntity(req, Ref.Field.TestFluentMybatis.name, Ref.Field.TestFluentMybatis.age) .end() .where .id() .eq(2) .end()); }
控制層代碼添加
@Autowired private IUpdateService updateService; @ApiOperation(value = "根據(jù)實(shí)體更新語(yǔ)法", notes = "根據(jù)實(shí)體更新語(yǔ)法") @RequestMapping(value = "/updateByEntity", method = RequestMethod.POST) @ResponseBody public Result<Integer> updateByEntity(@RequestBody TestFluentMybatisEntity req) { try { return Result.ok(updateService.updateByEntity(req)); } catch (Exception exception) { return Result.error(ErrorCode.BASE_ERROR_CODE.getCode(), exception.getMessage(), null); } }
驗(yàn)證一下
代碼說(shuō)明
1、先看看sql的執(zhí)行語(yǔ)句,如下圖:
2021-11-23 13:56:16.572 DEBUG 20820 --- [nio-8090-exec-4] c.h.f.f.m.T.updateBy : ==> Preparing: UPDATE `test_fluent_mybatis` SET `name` = ?, `age` = ? WHERE `id` = ? 2021-11-23 13:56:16.573 DEBUG 20820 --- [nio-8090-exec-4] c.h.f.f.m.T.updateBy : ==> Parameters: 李四(String), 29(Integer), 2(Integer) 2021-11-23 13:56:16.580 DEBUG 20820 --- [nio-8090-exec-4] c.h.f.f.m.T.updateBy : <== Updates: 1
2、這里需要注意,在使用byEntity方法的時(shí)候,不會(huì)使用entity中的id作為判斷的。官方原話為:未指定字段列表時(shí), 更新除主鍵外非null字段。
3、byEntity方法支持傳遞字段參數(shù),很好理解,只更新傳遞的字段值,不論是否為null。官方原話為:指定字段時(shí),更新指定的字段(包括null字段), 但指定主鍵無(wú)效。
4、我在方法中選定了name、age兩個(gè)字段,所以只更新這兩項(xiàng)。
fm對(duì)排除字段情有獨(dú)鐘,簡(jiǎn)單理解一下,就是在設(shè)置字段的時(shí)候,byEntity是只選定選擇的字段,byExclude是只排除選擇的字段。
接口層代碼添加
/** * 根據(jù)排除項(xiàng)更新語(yǔ)法 * * @param req 實(shí)體參數(shù) * @return */ Integer updateByExclude(TestFluentMybatisEntity req);
實(shí)現(xiàn)類代碼添加
@Override public Integer updateByExclude(TestFluentMybatisEntity req) { return testFluentMybatisMapper.updateBy( new TestFluentMybatisUpdate() .set .byExclude(req, TestFluentMybatisEntity::getAge, TestFluentMybatisEntity::getDelFlag) .end() .where .id() .eq(2) .end()); }
控制層代碼添加
@Autowired private IUpdateService updateService; @ApiOperation(value = "根據(jù)排除項(xiàng)更新語(yǔ)法", notes = "根據(jù)排除項(xiàng)更新語(yǔ)法") @RequestMapping(value = "/updateByExclude", method = RequestMethod.POST) @ResponseBody public Result<Integer> updateByExclude(@RequestBody TestFluentMybatisEntity req) { try { return Result.ok(updateService.updateByExclude(req)); } catch (Exception exception) { return Result.error(ErrorCode.BASE_ERROR_CODE.getCode(), exception.getMessage(), null); } }
驗(yàn)證一下
代碼說(shuō)明
1、先看看sql的執(zhí)行語(yǔ)句,如下圖:
2021-11-23 15:21:42.262 DEBUG 20820 --- [nio-8090-exec-6] c.h.f.f.m.T.updateBy : ==> Preparing: UPDATE `test_fluent_mybatis` SET `name` = ?, `create_time` = ? WHERE `id` = ? 2021-11-23 15:21:42.266 DEBUG 20820 --- [nio-8090-exec-6] c.h.f.f.m.T.updateBy : ==> Parameters: 李四(String), null, 2(Integer) 2021-11-23 15:21:42.271 DEBUG 20820 --- [nio-8090-exec-6] c.h.f.f.m.T.updateBy : <== Updates: 1
2、這里需要注意,實(shí)體中沒有給create_time設(shè)值,所以會(huì)把其設(shè)置為null,官方原話為:未指定字段列表時(shí), 更新除主鍵外字段(包括null字段)
3、而我指定了字段age和del_flag,但是并沒有作用,這就是byExclude的作用,官方原話為:排除指定字段。
可以在更新語(yǔ)法中,增加對(duì)字段的函數(shù)操作,使用applyFunc即可,這個(gè)方法還是很好用的,簡(jiǎn)化代碼。
接口層代碼添加
/** * 使用applyFunc更新語(yǔ)法 * * @return */ Integer updateByApplyFunc();
實(shí)現(xiàn)類代碼添加
@Override public Integer updateByApplyFunc() { return testFluentMybatisMapper.updateBy( new TestFluentMybatisUpdate() .set .name() .applyFunc("concat(name, ?)", "_男") .set .age() .applyFunc("age+5") .end() .where .id() .eq(2) .end()); }
控制層代碼添加
@Autowired private IUpdateService updateService; @ApiOperation(value = "使用applyFunc更新語(yǔ)法", notes = "使用applyFunc更新語(yǔ)法") @RequestMapping(value = "/updateByApplyFunc", method = RequestMethod.GET) @ResponseBody public Result<Integer> updateByApplyFunc() { try { return Result.ok(updateService.updateByApplyFunc()); } catch (Exception exception) { return Result.error(ErrorCode.BASE_ERROR_CODE.getCode(), exception.getMessage(), null); } }
驗(yàn)證一下
代碼說(shuō)明
1、先看看sql的執(zhí)行語(yǔ)句,如下圖:
2021-11-23 15:31:09.772 DEBUG 20820 --- [nio-8090-exec-8] c.h.f.f.m.T.updateBy : ==> Preparing: UPDATE `test_fluent_mybatis` SET `name` = concat(name, ?), `age` = age+5 WHERE `id` = ? 2021-11-23 15:31:09.782 DEBUG 20820 --- [nio-8090-exec-8] c.h.f.f.m.T.updateBy : ==> Parameters: _男(String), 2(Integer) 2021-11-23 15:31:09.787 DEBUG 20820 --- [nio-8090-exec-8] c.h.f.f.m.T.updateBy : <== Updates: 1
2、sql可以看出,將那么字段拼接了后綴"_男",同時(shí)年齡增加5歲。
看完了這篇文章,相信你對(duì)“Fluent Mybatis中Update語(yǔ)法怎么用”有了一定的了解,如果想了解更多相關(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)容。