Skip to content

Latest commit

 

History

History
8 lines (7 loc) · 220 Bytes

bach-update.md

File metadata and controls

8 lines (7 loc) · 220 Bytes

need rewriteBatchedStatements=true&allowMultiQueries=true

public interface UserInfoRepository extends CrudJdbcRepository<UserInfoDO, Long> {
    @BatchUpdate
    int batchUpdate(List<UserInfoDO> list);
}