20

我有一个使用 MyBatis 访问 PostgreSQL 数据库的 Java 项目。PostgreSQL 允许在语句之后返回新创建的行的字段INSERT,我想用它来返回自动生成BIGSERIAL id的新创建的记录。因此,我insert将 XML 中的命令更改为使用 PostgreSQL 的resultType="long"特性,为标签添加一个属性<insert>,并在映射器的 Java 接口中将插入方法设置为 returnlong而不是void.

当我尝试运行它时,我得到一个org.xml.sax.SAXParseException说法Attribute "resultType" must be declared for element type "insert"

现在,当我将<insert>标签更改为<select>一切正常时,我使用<select>标签来执行INSERT语句让我很困扰。

有没有办法让映射到<insert>标签的方法返回结果,或者 MyBatis 不是为此而设计的,我应该将它们保留为<select>标签?

4

5 回答 5

24

映射插入方法的返回类型可以是voidint(在这种情况下,它将返回插入行的编号)。您可以执行以下机制来返回生成的 id:

<insert id="insert" parameterClass="MyParameter">
  <selectKey order="AFTER" keyProperty="id" resultType="long">
    SELECT currval('my_seq')
  </selectKey>
  INSERT INTO mytable(col1, col2) VALUES (#{val1}, #{val2})
</insert>

这会将生成的id列设置id为参数类的属性。之后,您作为参数传递的对象将id在其属性中生成集合。

于 2013-03-18T09:49:59.520 回答
6

您可以如下使用。在xml中

 <insert id="insertNewUser" parameterType="User">
            <selectKey keyProperty="userId" resultType="Integer" order="BEFORE">
                select NEXTVAL('base.user_id_seq')
            </selectKey>
            INSERT INTO base.user(
                user_id, user_name)
            VALUES (#{userId}, #{userName});
    </insert>

在您调用插入方法的 Java 类中,您可以通过调用user.getUserId().

基本上下一个 val 存储在对象的变量中。Here userId inside User.

于 2013-03-19T19:35:29.387 回答
6

有两种方法(至少我知道)来获取一个插入记录的 ID:

例如,我们有一个类EntityDao

public class EntityDao {
     private Long id;
     private String name;
     // other fields, getters and setters
}

1. 使用insert标签并返回一个对象实例

MyBatis 界面

public interface EntityDaoMapper {
    EntityDao insert(EntityDao entity);
}

MyBatis XML 映射器:

<insert id="insert" parameterType="com.package.EntityDao" useGeneratedKeys="true" keyColumn="entity_id" keyProperty="id">
    INSERT INTO some_table (name, type, other_fields, etc)
    VALUES (#{name}, #{type}, #{other_fields}, #{etc}) 
</insert>

示例代码:

    EntityDao saved = entityDaoMapper.insert(entityToSave);
    System.out.println(saved.getId());

2.使用selectandresultType标签只返回记录的ID

MyBatis 界面

public interface EntityDaoMapper {
    Long insert(EntityDao entity);
}

MyBatis XML 映射器:

<select id="insert" parameterType="com.package.EntityDao" resultType="long">
    INSERT INTO some_table (name, type, other_fields, etc)
    VALUES (#{name}, #{type}, #{other_fields}, #{etc}) 
    RETURNING entity_id       <-- id only or many fields
</select>

示例代码:

Long id = entityDaoMapper.insert(entityToSave);
System.out.println(id);
于 2019-09-20T09:55:39.287 回答
1

您还可以使用生成的密钥:

  <insert id="create" parameterType="Skupina" useGeneratedKeys="true" keyColumn="id" keyProperty="id">
        INSERT INTO ODBOR 
            (NAZEV, POPIS, ZKRATKA, WEBROLE, JEODBOR, AKTIVNI)
        VALUES 
            (#{nazev}, #{popis}, #{webrole}, #{webrole}, false, #{aktivni})
  </insert>

插入后,参数将属性id设置为列id中的值。

于 2016-11-22T11:25:26.477 回答
0

在此示例中使用选项

import org.apache.ibatis.annotations.Insert;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Options;
import org.apache.ibatis.annotations.Param;

@Mapper
public interface POJOCustomMapper {
    @Options(useGeneratedKeys = true, keyProperty = "ID", keyColumn = "ID") 
    @Insert({
        "insert into TABLE_A ( NAME "
        "values (#{NAME,jdbcType=VARCHAR})"
    })
    long insert(POJO record);
于 2020-07-28T13:25:09.167 回答