20

MyBatisを使用してPostgreSQLデータベースにアクセスするJavaプロジェクトがあります。PostgreSQLでは、INSERTステートメントの後に新しく作成された行のフィールドを返すことができます。これを使用してBIGSERIAL id、新しく作成されたレコードの自動生成を返します。そこで、insertPostgreSQLの機能を使用するようにXMLのコマンドを変更resultType="long"し、タグに属性を追加し<insert>、マッパーのJavaインターフェースで、のlong代わりにreturnに挿入メソッドを設定し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

マップされた挿入メソッドの戻りタイプは、voidまたはint(この場合、挿入された行の番号を返します)にすることができます。生成された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()

基本的に、次の値はオブジェクトの変数内に格納されます。Here userId inside User.

于 2013-03-19T19:35:29.387 に答える
6

挿入された1つのレコードのIDを取得する方法は2つあります(少なくとも私が知っていることです)。

たとえば、次のクラスがあり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.selectおよびresultTypeタグを使用してレコードの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 に答える