mybatis新增save結束後自動返回主鍵id詳解

mybatis新增save結束後自動返回主鍵id

1.使用場景

save操作之前實體類中id為null,save之後自動返回帶id的實體類

@Override
    public ChartPagePanel save(ChartPagePanel entity) {
        UserDetails user = SecurityContextHolder.getUserDetails();
        entity.setCreateUser(user.getUsername());
        entity.setLastModifyUser(user.getUsername());
        //entity中的id為null
        chartPagePanelMapper.save(entity);
        //經過save操作後自動返回帶id的entity
        // savePanelManage(entity); 其中的entity帶有id
        savePanelManage(entity);
        return entity;
    }

    @Transactional
    public void savePanelManage(ChartPagePanel entity){
        if(entity.getChartPageManges()!=null && entity.getChartPageManges().size()>0) {
            Map<String, Object> map = new HashMap<>();
            for (int i = 0; i < entity.getChartPageManges().size(); i++) {
                int manageId = entity.getChartPageManges().get(i).getId();
                map.put("manageId", manageId);
                map.put("panelId", entity.getId());
                chartPagePanelManageMapper.save(map);
            }
        }
    }

2.原理在Mybatis配置瞭

useGeneratedKeys=“true” keyProperty=“id”
<insert id="save" parameterType="com.centrin.generator.entity.ChartPagePanel" useGeneratedKeys="true" keyProperty="id">
 insert into chart_page_panel
 (
        `parent_id`,
        `position`,
        `name`,
        `create_time`,
        `create_user`,
        `last_modify_time`,
        `last_modify_user`
        )
 values (
  #{parentId},
  #{position},
  #{name},
  NOW(),
  #{createUser},
  NOW(),
  #{lastModifyUser}
  )
  </insert>

mybatis或者mybatis-plus中save方法返回主鍵值

1.mapper.xml中

方式:

useGeneratedKeys=“true” keyProperty=“id” keyColumn=“id”

解釋:

在xml中定義useGeneratedKeys為true,返回主鍵id的值,keyColumn和keyProperty分別代表數據庫記錄主鍵字段和java對象成員屬性名

<insert id="saveBill" parameterType="com.jd.fp.mrp.domain.model.biz.AdjustBillInfo"
        useGeneratedKeys="true" keyProperty="id" keyColumn="id">
        INSERT INTO adjust_bill_info(external_bill_id, warehouse_code, warehouse_name)
        VALUES(#{externalBillId}, #{warehouseCode}, #{warehouseName});
</insert>

2.service或者dao中

註意:通過該種方式得到的結果是受影響的行數!!!!!

如果要獲取主鍵id值,需要從傳入的對象中獲取!!!!!

Long id = aTranscationMapper.saveBill(adjustBillInfo);
System.out.println("===========保存受影響的行數:"+id+"  保存的id值為:"+adjustBillInfo.getId());

輸出結果展示:

===========保存受影響的行數:1 保存的id值為:191

mybatis-plus的insert後,返回主鍵id,直接通過傳入的對象獲取id即可!
bizApplicationFormMapper.insert(form);
System.out.println(“==============”+form.getId());

以上為個人經驗,希望能給大傢一個參考,也希望大傢多多支持WalkonNet。

推薦閱讀: