40

如何使用 MyBatis 获取插入的生成密钥?我读了很多关于这个问题的页面,但我仍然被阻止,有人可以帮助我吗?这是我的代码:

桌子:

ID_ERROR long primary key
DATE timestamp
TYPE varchar
MESSAGE varchar
SOURCE varchar

道:

Long returnedId = 0L;
MyMapper myMapper = this.sqlSession.getMapper(MyMapper.class);
myMapper.insertRecord(returnedId, Utils.now(), t.getClass().getName(), t.getMessage(), c.getName());
return returnedId;

mapper.java:

public void insertRecord(@Param("returnedId") Long returnedId, @Param("timestamp")Timestamp timestamp,@Param("type") String type,@Param("message") String message,@Param("source") String source);

映射器.xml

 <insert id="insertRecord" parameterType="map" useGeneratedKeys="true"  keyProperty="ID_ERROR">
    INSERT INTO errors (
        DATE,
        TYPE,
        MESSAGE,
        SOURCE
    )
    VALUES (
        #{timestamp},
        #{type},
        #{message},
        #{source}
    )
    <selectKey resultType="long" order="AFTER" keyProperty="returnedId">
        SELECT LAST_INSERT_ID() as returnedId
    </selectKey>
</insert>

怎么了?如何获取此插入的生成密钥?谢谢!

4

8 回答 8

66

对我来说,它是这样工作的(mybatis 3.x).. id 必须在 mysql 表中设置为自动增量

<insert id="createEmpty" parameterType="Project" useGeneratedKeys="true" keyProperty="project.projectId" keyColumn="PROJECT_ID">
    INSERT INTO PROJECT (TITLE,DESCRIPTION)
    VALUES
    (#{title},#{description})
</insert>

注意 keyProperty="project.projectId"useGeneratedKeys="true"

我的界面是:

public int createEmpty(@Param("project") Project project, @Param("title") String title,
    @Param("description") String description);

最后获取值(将自动分配给 pojo 的 id 属性)我使用:

projectRepository.createEmpty(p, "one", "two");
System.err.print(p.getProjectId() + "\n");
于 2014-01-06T16:04:33.373 回答
16

您可以通过两种方式实现这一点,

  1. 通过使用useGeneratedKeys="true", keyProperty="id", keyColumn="id"

    keyProperty指 POJO 变量名,keyColumn指数据库中生成的列名

  2. 通过使用<selectKey/>内部插入标签

于 2013-09-02T05:51:33.690 回答
6

如果你看一下MyBatis 文档,你至少需要useGeneratedKeyskeyProperty来获取自动增量数据(对于某些数据库,你需要添加keyColumn)。

如您所见,useGeneratedKeys 取决于是否/如何实现数据库的 JDBC 的 getGeneretadKeys 方法。

例如,对于mysql 或 H2,getGeneretadKeys 仅支持一列。最后生成的密钥将是 getGeneretadKeys 返回的一个。

总之,在您的情况下,您只需要添加 useGeneratedKeys 和 keyProperty (使用 ID_ERROR auto_increment):

映射器.xml

<resultMap type='pathToJavaClass/Error' id='error'>
    <id property='id' column='ID_ERROR' />
    <result property='timestamp' column='DATE' />
    <result property='type' column='TYPE'/>
    <result property='message' column='MESSAGE'/>
    <result property='source' column='SOURCE'/>
</resultMap>
<insert id="insertRecord" parameterType="error" useGeneratedKeys="true" keyProperty="id">
INSERT INTO errors (
    DATE,
    TYPE,
    MESSAGE,
    SOURCE
)
VALUES (
    #{timestamp},
    #{type},
    #{message},
    #{source}
)
</insert>

接口.java

public void insertRecord(@Param("error") Error error);

如果您在检索生成的密钥时仍然遇到问题,请查看 mysql 的 JDBC 文档(旧版本可能无法实现 getGeneretadKeys)。

于 2018-05-11T12:35:03.630 回答
5

Easy Solution:

Use KeyProperty attribute as objectName.AutoincrementId Like below...

useGeneratedKeys="true", KeyProperty="person.id", KeyColumn="id"

于 2015-05-20T05:44:42.280 回答
4

在 xml 文件中放入以下 ​​5 行:

<insert id="createPet" parameterType="java.util.Map"
    useGeneratedKeys="true" keyProperty="id">
    INSERT INTO Pet (NAME, OWNER, SPECIES, SEX, BIRTH)
    VALUES (#{name}, #{owner}, #{species}, #{sex}, #{birth})
</insert>

在Java主类中创建该方法,并在主方法中调用:

public int createPet(PetDVO petDVO) throws Exception {
    HashMap<String, Object> inputMap = new HashMap<String, Object>();
    inputMap.put("name", petDVO.getName());
    inputMap.put("owner", petDVO.getOwner());
    inputMap.put("species", petDVO.getSpecies());
    inputMap.put("sex", petDVO.getSex());
    inputMap.put("birth", petDVO.getBirth());

    /**
     * Get the sql session and commit the data
     */
    SqlSession sqlSession = getSqlSession();
    sqlSession.insert("createPet", inputMap);
    sqlSession.commit();

    BigInteger newID = (BigInteger)inputMap.get("id");
    return newID.intValue();
}

但是您应该自己创建 PetDVO 类。这就对了。

于 2018-10-15T04:42:54.437 回答
0

在 Mapper Xml 下,使用查询:

    <insert id="saveDemo" parameterType="com.abc.demo"
       useGeneratedKeys="true" keyProperty="demoId" keyColumn="DEMOID">
       INSERT INTO TBL_DEMO (DEMONAME,DEMODESCRIPTION)
       VALUE (#{demoName},#{demoDescription})
       <selectKey keyProperty="demoId" resultType="int" order="AFTER">
        SELECT LAST_INSERT_ID();
       </selectKey>
    </insert>

Java 端

@Override
public boolean saveDemo(Demo demo) {
    boolean status = false;
    SqlSession session = this.sqlSessionFactory.openSession();
    try {
        DemoMapper mapper = session.getMapper(DemoMapper.class);
        mapper.saveDemo(demo);
        session.commit();
        status = true;
    } catch(PersistenceException e) {
        System.out.println(e);
    } finally {
        session.close();
    }
    return status;
}
于 2016-05-13T02:43:05.773 回答
-1

请按照以下步骤操作:

  1. 以 id 作为属性创建错误 POJO

  2. 将 returnId 替换为错误,如下所示,

public void insertRecord(@Param("error") 错误错误,@Param("timestamp")Timestamp 时间戳,@Param("type") 字符串类型,@Param("message") 字符串消息,@Param("source" ) 字符串源);

  1. 将 keyProperty="ID_ERROR" 更改为 keyProperty="error.id"

  2. 消除

    <selectKey resultType="long" order="AFTER" keyProperty="returnedId">
        SELECT LAST_INSERT_ID() as returnedId
    </selectKey>
    

你会被id插入error.id

于 2013-08-30T06:54:58.193 回答
-5

如果要获取生成的主键,则应通过Map或传递参数POJO Object

public void insertRecord(Map<String, Object> map);

调用映射方法时,将值放入映射。

Map<String, Object> map = new HashMap<String, Object>();
map.put("returnedId", 0);
map.put("message", message);
// other paramters
mapper.insertRecord(map);
return map.get("returnedId");
于 2013-08-30T01:18:35.677 回答