【Doma】バッチ更新時にSQLファイルを使用する
Domaのバージョンは2.5.0
バッチ更新時、ID以外の列をキーにしてアップデートかけたかったけど、どう書いていいのかドキュメントから見つけられなかったので、メモしておく
@Entity
public Hoge {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
public Integer id;
// fugaId, orderNum が複合キー
public Integer fugaId;
public Integer orderNum;
@Dao
public interface HogeDao {
@BatchUpdate(sqlFile=true)
int updateHoges(List<Hoge> hoges);
}
とし、fugaId
とorderNum
で更新をかけにいきたいとする
その場合、更新用SQLは
UPDATE hoge SET /*%population*/ id = id
WHERE fuga_id = /*hoges.fugaId*/1 AND order_num = /*hoges.orderNum*/1
とすればいいっぽい
hoges
はList<Hoge>
ではなくHoge
のインスタンスになる
Author And Source
この問題について(【Doma】バッチ更新時にSQLファイルを使用する), 我々は、より多くの情報をここで見つけました https://qiita.com/kakusuke/items/b6cb55b436dd3730eb14著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .