springBoot中怎么利用jdbc批量新增接口,針對(duì)這個(gè)問題,這篇文章詳細(xì)介紹了相對(duì)應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問題的小伙伴找到更簡(jiǎn)單易行的方法。
創(chuàng)新互聯(lián)是一家集網(wǎng)站建設(shè),洛隆企業(yè)網(wǎng)站建設(shè),洛隆品牌網(wǎng)站建設(shè),網(wǎng)站定制,洛隆網(wǎng)站建設(shè)報(bào)價(jià),網(wǎng)絡(luò)營(yíng)銷,網(wǎng)絡(luò)優(yōu)化,洛隆網(wǎng)站推廣為一體的創(chuàng)新建站企業(yè),幫助傳統(tǒng)企業(yè)提升企業(yè)形象加強(qiáng)企業(yè)競(jìng)爭(zhēng)力??沙浞譂M足這一群體相比中小企業(yè)更為豐富、高端、多元的互聯(lián)網(wǎng)需求。同時(shí)我們時(shí)刻保持專業(yè)、時(shí)尚、前沿,時(shí)刻以成就客戶成長(zhǎng)自我,堅(jiān)持不斷學(xué)習(xí)、思考、沉淀、凈化自己,讓我們?yōu)楦嗟钠髽I(yè)打造出實(shí)用型網(wǎng)站。
protected void saveAll(Listt, Object cz, String tablename){ Map parameterType=new HashMap<>(); String condition = DataUtils.buildInsertSqlCondition(cz, parameterType); String sql = "insert into " + tablename + condition; gbiapJdbcTemplate.batchUpdate(sql, new BatchPreparedStatementSetter() { @Override public void setValues(PreparedStatement ps, int i) throws SQLException { T cz = t.get(i); int index=1; for (Map.Entry entry:parameterType.entrySet() ) { String name = entry.getKey(); String type = entry.getValue(); name=name.substring(0,1).toUpperCase()+name.substring(1);//首字母變大 try { Method method = cz.getClass().getMethod("get" + name); switch (type){ case "java.lang.String": ps.setString(index,(String)method.invoke(cz)); index++; break; case "float": ps.setFloat(index,(float)method.invoke(cz)); index++; break; case "int": ps.setInt(index,(int)method.invoke(cz)); index++; break; case "long": ps.setLong(index,(long)method.invoke(cz)); index++; break; case "double": ps.setDouble(index,(double)method.invoke(cz)); index++; break; default: ps.setString(index,(String)method.invoke(cz)); index++; break; } } catch (NoSuchMethodException e) { e.printStackTrace(); }catch (Exception e) { e.printStackTrace(); } } } @Override public int getBatchSize() { return t.size(); } }); }
關(guān)于springBoot中怎么利用jdbc批量新增接口問題的解答就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關(guān)知識(shí)。