[java][jdbc] spring JDBCTemplate 批量插入,返回id

1.插入一条记录返回刚插入记录的id

public int addBean(final Bean b){
    final String strSql = "insert into buy(id,c,s,remark,line,cdatetime," + "c_id,a_id,count,type) values(null,?,?,?,?,?,?,?,?,?)";
    KeyHolder keyHolder = new GeneratedKeyHolder();
    this.getJdbcTemplate().update(new PreparedStatementCreator()
    {
        public java.sql.PreparedStatement createPreparedStatement(Connection conn) throws SQLException
        {
            int i = 0;
            java.sql.PreparedStatement ps = conn.prepareStatement(strSql);
            ps = conn.prepareStatement(strSql, Statement.RETURN_GENERATED_KEYS);
            ps.setString(++i, b.getC());
            ps.setInt(++i, b.getS());
            ps.setString(++i, b.getR());
            ps.setString(++i, b.getline());
            ps.setString(++i, b.getCDatetime());
            ps.setInt(++i, b.getCId());
            ps.setInt(++i, b.getAId());
            ps.setInt(++i, b.getCount());
            ps.setInt(++i, b.getType());
            return ps;
        }
    }, keyHolder);
    return keyHolder.getKey().intValue();
}

 2.批量插入数据

public void addBuyBean(List list){
    final List tempBpplist = list;
    String sql = "insert into buy_bean(id,bid,pid,s,datetime,mark,count)" + " values(null,?,?,?,?,?,?)";
    this.getJdbcTemplate().batchUpdate(sql, new BatchPreparedStatementSetter()  {
        @Override
        publicint getBatchSize()
        {
            return tempBpplist.size();
        }
        @Override
        publicvoid setValues(PreparedStatement ps, int i) throws SQLException {
            ps.setInt(1, tempBpplist.get(i).getBId());
            ps.setInt(2, tempBpplist.get(i).getPId());
            ps.setInt(3, tempBpplist.get(i).getS());
            ps.setString(4, tempBpplist.get(i).getDatetime());
            ps.setString(5, tempBpplist.get(i).getMark());
            ps.setInt(6, tempBpplist.get(i).getCount());
        }
    });
}

3.批量插入并返回批量id

注:由于JDBCTemplate不支持批量插入后返回批量id,所以此处使用jdbc原生的方法实现此功能

public List addProduct(List expList) throws SQLException {
    final List tempexpList = expList;
    String sql = "insert into product(id,s_id,status,datetime," + " count,o_id,reasons" + " values(null,?,?,?,?,?,?)";
    DbOperation dbOp = new DbOperation();
    dbOp.init();
    Connection con = dbOp.getConn();
    con.setAutoCommit(false);
    PreparedStatement pstmt = con.prepareStatement(sql, PreparedStatement.RETURN_GENERATED_KEYS);
    for(ProductBean n: tempexpList) {
        pstmt.setInt(1, n.getSId());
        pstmt.setInt(2, n.getStatus());
        pstmt.setString(3, n.getDatetime());
        pstmt.setInt(4, n.getCount());
        pstmt.setInt(5, n.getOId());
        pstmt.setInt(6, n.getReasons());
        pstmt.addBatch();
    }
    pstmt.executeBatch();
    con.commit();
    ResultSet rs = pstmt.getGeneratedKeys(); //获取结果
    List list = new ArrayList();
    while(rs.next()) {
        list.add(rs.getInt(1)); //取得ID
    }
    con.close();
    pstmt.close();
    rs.close();
    return list;
}

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

awonw

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值