美文网首页
Mybatis的insert操作,映射id

Mybatis的insert操作,映射id

作者: 温暖的纯真 | 来源:发表于2021-03-31 17:19 被阅读0次

    1. 实体类中对主键加注解

    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
    

    2. mapper.xml中添加设置参数

    <insert id="addList" parameterType="java.util.List" useGeneratedKeys="true" keyProperty="id">
    ...
    </insert>
    

    相关文章

      网友评论

          本文标题:Mybatis的insert操作,映射id

          本文链接:https://www.haomeiwen.com/subject/fukahltx.html