1)批量保存只连接数据库一次,性能高效;

  对应的保存sql还是和一般的一样的;


@SuppressWarnings({ "unchecked", "rawtypes" })

    @Override

    public void saveAttachmentOwnerInfo(final List p_w_uploadOwnerList,

            final String idAttachmentOwner, final String applyPolicyNo) throws PafaDAOException {

        try {

            this._execute(new SqlMapClientCallback() {

                public Object doInSqlMapClient(SqlMapExecutor sme) throws SQLException {

                    sme.startBatch();

                    int count = 0;

                    for (AttachmentOwnerDTO attachOwnerDTO : p_w_uploadOwnerList) {

                        attachOwnerDTO.setAttachmentOwnerId(idAttachmentOwner);

                        attachOwnerDTO.setApplyPolicyNo(applyPolicyNo);

                        sme.insert("personnelInfo.saveAttachmentOwnerInfo", attachOwnerDTO);

                        count++;

                        if (count == 50) {

                            sme.executeBatch();

                            count = 0;

                        }

                    }

                    sme.executeBatch();

                    return null;

                }

            });


        } catch (Exception e) {

              java.out.println(JSON.toJSONString(p_w_uploadOwnerList));

        }


    }