suchen

Heim  >  Fragen und Antworten  >  Hauptteil

java – So erhalten Sie die neu hinzugefügte ID in Mybatis

<insert id="saveCustomer" parameterType="com.xiaonatech.dsx.entity.CustomerEntity" useGeneratedKeys="true" keyProperty="policyID">

        insert into customer                 (certType,code,password,name,mobile,effDate,expDate,address,createID,createTime,updateID,updateTime) 
        values
             (#{certType},#{code}, #{password}, #{name}, #{mobile},  #{effDate},#{expDate},#{address},#{createID},#{createTime} ,#{updateID},#{updateTime})
</insert>

dao-Schicht
public int saveCustomer(CustomerEntity cs);
Diese Methode gibt immer 1 zurück. Der Wert von object.id ist immer leer. Die Datenbank ist MySQL
CustomerEntity applyRecord = new CustomerEntity();

    applyRecord.setCertType("0");
    applyRecord.setCode("423565462256");
    applyRecord.setPassword("123456");
    applyRecord.setName("sds");
    applyRecord.setMobile("12345678978");
    applyRecord.setCreateID("150");
    applyRecord.setUpdateID("150");
    applyRecord.setUpdateTime(new Date());
    int i = dao.saveCustomer(cs);
    System.out.println("i========="+i+"  id================"+applyRecord.getCarOwnerID());
天蓬老师天蓬老师2729 Tage vor1161

Antworte allen(6)Ich werde antworten

  • 伊谢尔伦

    伊谢尔伦2017-06-30 09:55:48

    @浮生百记 在其基础上加上useGeneratedKeys="true"

    Antwort
    0
  • 欧阳克

    欧阳克2017-06-30 09:55:48

    这个方法返回的实际是影响的记录数。
    你insert之后直接去取实体类的id即可。

    ApplyRecord applyRecord = new ApplyRecord();
    applyRecord.setAccount("1234");
    applyRecord.setCode("123");
    Timestamp now = new Timestamp(System.currentTimeMillis());
    applyRecord.setGmtCreate(now);
    applyRecord.setGmtModified(now);
    int i = applyRecordDao.insert(applyRecord);
    logger.info("{}",applyRecord.getId());

    Antwort
    0
  • 淡淡烟草味

    淡淡烟草味2017-06-30 09:55:48

    实体类可以看下么

    Antwort
    0
  • 仅有的幸福

    仅有的幸福2017-06-30 09:55:48

    useGeneratedKeys="true" keyProperty="id" xml配置中keyProperty为主键 你看你的数据数是不是设id为主键并设置期为自增,如果设置执行完insert后,主键的值就会反射到你实体类的主键中

    Antwort
    0
  • 扔个三星炸死你

    扔个三星炸死你2017-06-30 09:55:48

    <insert id="save" parameterType="atyy.model.ArticleCategoryPO" useGeneratedKeys="true">
    </insert>
    加入一个属性就行了useGeneratedKeys="true"

    Antwort
    0
  • 为情所困

    为情所困2017-06-30 09:55:48

    1.数据库id必须是auto_increment
    2.配置useGeneratedKeys="true"以及keyProoerty
    3.你调用mapper接口的方法得到的数值,也就是总拿到的1是影响的记录数,要想拿到对象的id,请点用对应的getter方法

    Antwort
    0
  • StornierenAntwort