Fluent Mybatis學習之Update語法實踐

前言

本篇文章主要針對update語法進行驗證。

本項目Github地址:項目倉庫

數據準備

還是用之前在數據庫存的數據,數據如下:

Update語法

簡單的寫法

fm的update簡單寫法可以直接使用is()來對表字段進行賦值,如果需要將字段設置為Null的話,直接使用isNull()方法。

接口層代碼添加

/**
 * 簡單的更新語法
 *
 * @return
 */
Integer updateSimple();

實現類代碼添加

@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 = "簡單語法", notes = "簡單語法")
@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);
  }
}

驗證一下

代碼說明

1、可以看一下代碼執行的具體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

UpdateByEntity根據表實體更新數據

fm支持使用表實體進行數據更新,但是有一些限制,具體看我後面的代碼說明。

接口層代碼添加

/**
 * 根據實體更新語法
 *
 * @param req 實體參數
 * @return
 */
Integer updateByEntity(TestFluentMybatisEntity req);

實現類代碼添加

@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 = "根據實體更新語法", notes = "根據實體更新語法")
@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);
  }
}

驗證一下

代碼說明

1、先看看sql的執行語句,如下圖:

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方法的時候,不會使用entity中的id作為判斷的。官方原話為:未指定字段列表時, 更新除主鍵外非null字段。

3、byEntity方法支持傳遞字段參數,很好理解,隻更新傳遞的字段值,不論是否為null。官方原話為:指定字段時,更新指定的字段(包括null字段), 但指定主鍵無效。

4、我在方法中選定瞭name、age兩個字段,所以隻更新這兩項。

UpdateByExclude根據表實體排除更新數據

fm對排除字段情有獨鐘,簡單理解一下,就是在設置字段的時候,byEntity是隻選定選擇的字段,byExclude是隻排除選擇的字段。

接口層代碼添加

/**
 * 根據排除項更新語法
 *
 * @param req 實體參數
 * @return
 */
Integer updateByExclude(TestFluentMybatisEntity req);

實現類代碼添加

@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 = "根據排除項更新語法", notes = "根據排除項更新語法")
@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);
  }
}

驗證一下

代碼說明

1、先看看sql的執行語句,如下圖:

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、這裡需要註意,實體中沒有給create_time設值,所以會把其設置為null,官方原話為:未指定字段列表時, 更新除主鍵外字段(包括null字段)

3、而我指定瞭字段age和del_flag,但是並沒有作用,這就是byExclude的作用,官方原話為:排除指定字段。

applyFunc

可以在更新語法中,增加對字段的函數操作,使用applyFunc即可,這個方法還是很好用的,簡化代碼。

接口層代碼添加

/**
 * 使用applyFunc更新語法
 *
 * @return
 */
Integer updateByApplyFunc();

實現類代碼添加

@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更新語法", notes = "使用applyFunc更新語法")
@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);
  }
}

驗證一下

代碼說明

1、先看看sql的執行語句,如下圖:

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可以看出,將那麼字段拼接瞭後綴”_男”,同時年齡增加5歲。

總結

總的來看,fm提供的方法還是很優越的,後面會繼續把fm剩下的功能調試完。

到此這篇關於FluentMybatis學習之Update語法實踐的文章就介紹到這瞭,更多相關FluentMybatis的內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: