91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

springBoot中怎么利用jdbc批量新增接口

發布時間:2021-06-18 18:00:11 來源:億速云 閱讀:331 作者:Leah 欄目:大數據

springBoot中怎么利用jdbc批量新增接口,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

 protected  void saveAll(List<T> t, Object cz, String tablename){
        Map<String,String> 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<String,String> 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();
            }
        });
    }

關于springBoot中怎么利用jdbc批量新增接口問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

琼结县| 衡阳市| 洪泽县| 鄂托克旗| 雅江县| 阿尔山市| 分宜县| 马关县| 宜良县| 壶关县| 高阳县| 宿松县| 依安县| 武邑县| 大石桥市| 石楼县| 宁晋县| 明水县| 合水县| 蒙自县| 延寿县| 华阴市| 淳化县| 平邑县| 张家川| 壤塘县| 惠安县| 汉沽区| 西华县| 德清县| 银川市| 曲沃县| 富源县| 剑阁县| 红桥区| 永济市| 丹阳市| 桐乡市| 濉溪县| 齐齐哈尔市| 鄂尔多斯市|