真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

使用Mybatis怎么批量插入數(shù)據(jù)并返回主鍵

這篇文章將為大家詳細(xì)講解有關(guān)使用Mybatis怎么批量插入數(shù)據(jù)并返回主鍵,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。

創(chuàng)新互聯(lián)長期為上千家客戶提供的網(wǎng)站建設(shè)服務(wù),團(tuán)隊(duì)從業(yè)經(jīng)驗(yàn)10年,關(guān)注不同地域、不同群體,并針對(duì)不同對(duì)象提供差異化的產(chǎn)品和服務(wù);打造開放共贏平臺(tái),與合作伙伴共同營造健康的互聯(lián)網(wǎng)生態(tài)環(huán)境。為烏拉特中企業(yè)提供專業(yè)的網(wǎng)站建設(shè)、做網(wǎng)站烏拉特中網(wǎng)站改版等技術(shù)服務(wù)。擁有十余年豐富建站經(jīng)驗(yàn)和眾多成功案例,為您定制開發(fā)。

響應(yīng)效果(id為主鍵):

{
  "data": [
    {"studentName": "張三","classNo": "一班","id": 111},
    {"studentName": "李四","classNo": "二班","id": 112},
    {"studentName": "王五","classNo": "一班","id": 113}
  ]
}

控制層:

@PostMapping("/test")
 @ResponseBody
 public Map test(@RequestBody String data) {
 Map resultMap = new HashMap();
        //非空校驗(yàn)
 if (!checkParams.checkString(data)) {
  resultMap.put("code", "1");
  resultMap.put("msg", "參數(shù)為空。");
  return resultMap;
 }
        //json轉(zhuǎn)List>
 JSONObject json= new JSONObject(data);
 String dataString = json.get("data").toString();
 com.google.gson.Gson gson = new Gson();
  List> list = gson.fromJson(dataString, new   com.google.common.reflect.TypeToken>>() {
  }.getType());
        //請(qǐng)求接口
 resultMap=registerService.test(list);
 return resultMap;
 }

接口:

public Map test(List> data);

實(shí)現(xiàn)類:

@Override
 public Map test(List> data) {
 Map resultMap = new HashMap();
 registerMapper.test( data);
 resultMap.put("data",data);
 return resultMap;
 }

持久層:

public void test(List> list);

statement:


 
 INSERT INTO student_info(student_name,class_no)VALUES
 
  (
  #{item.studentName},
  #{item.classNo}
  )
 
 

請(qǐng)求方式:

http://localhost/xxx/test

請(qǐng)求參數(shù):

{
  "data": [
    {"studentName": "張三","classNo": "一班"},
    {"studentName": "李四","classNo": "二班"},
    {"studentName": "王五","classNo": "一班"}
  ]
}

注意事項(xiàng):

statement中keyProperty的賦值是可以自定義的,如果將keyProperty的值改為key,即改成如下:


 
 INSERT INTO student_info(student_name,class_no)VALUES
 
  (
  #{item.studentName},
  #{item.classNo}
  )
 
 

則響應(yīng)效果(key為主鍵)如下:

{
  "data": [
    {"studentName": "張三","classNo": "一班","key": 111},
    {"studentName": "李四","classNo": "二班","key": 112},
    {"studentName": "王五","classNo": "一班","key": 113}
  ]
}

關(guān)于使用Mybatis怎么批量插入數(shù)據(jù)并返回主鍵就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。


分享文章:使用Mybatis怎么批量插入數(shù)據(jù)并返回主鍵
鏈接分享:http://weahome.cn/article/jdicog.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部