新网创想网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
接下来两节要探讨的是批量插入和批量更新,因为这两种操作在企业中也经常用到。
成都创新互联是专业的松山网站建设公司,松山接单;提供成都网站设计、成都做网站,网页设计,网站设计,建网站,PHP网站建设等专业做网站服务;采用PHP框架,可快速的进行松山网站开发网页制作和功能扩展;专业做搜索引擎喜爱的网站,专业的做网站团队,希望更多企业前来合作!
MySQL新增语句
insert into 表名(字段,字段。。。) values ( 值,值 。。。);此种适合单条插入。
批量插入,一种可以在代码中循环着执行上面的语句,但是这种效率太差,下面会有对比,看看它有多差。
另一种,可以用mysql支持的批量插入语句,
insert into 表名(字段,字段。。。) values ( 值,值 。。。),( 值,值 。。。),( 值,值 。。。)....
这种方式相比起来,更高效。
下面开始来实现。
select uuid() insert into t_customer (id,c_name,c_sex,c_ceroNo,c_ceroType,c_age) values (#{id},#{name},#{sex},#{ceroNo},#{ceroType},#{age})insert into t_customer (id,c_name,c_sex,c_ceroNo,c_ceroType,c_age) values ((select uuid()),#{cus.name},#{cus.sex},#{cus.ceroNo},#{cus.ceroType},#{cus.age})
实体model对象
package com.soft.mybatis.model; /** * Created by xuweiwei on 2017/9/10. */ public class Customer { private String id; private String name; private Integer age; private Integer sex; private String ceroNo; private Integer ceroType; public String getId() { return id; } public void setId(String id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public Integer getAge() { return age; } public void setAge(Integer age) { this.age = age; } public Integer getSex() { return sex; } public void setSex(Integer sex) { this.sex = sex; } public String getCeroNo() { return ceroNo; } public void setCeroNo(String ceroNo) { this.ceroNo = ceroNo; } public Integer getCeroType() { return ceroType; } public void setCeroType(Integer ceroType) { this.ceroType = ceroType; } @Override public String toString() { return "Customer{" + "id='" + id + '\'' + ", name='" + name + '\'' + ", age=" + age + ", sex=" + sex + ", ceroNo='" + ceroNo + '\'' + ", ceroType='" + ceroType + '\'' + '}'; } }
接口
int add(Customer customer); int batchInsert(Mapparam);
实现
/** * 新增数据 * @param customer * @return */ public int add(Customer customer) { return insert("customer.insert", customer); } /** * 批量插入数据 * @param param * @return */ public int batchInsert(Mapparam) { return insert("customer.batchInsert", param); } /** * 公共部分 * @param statementId * @param obj * @return */ private int insert(String statementId, Object obj){ SqlSession sqlSession = null; try { sqlSession = SqlsessionUtil.getSqlSession(); int key = sqlSession.insert(statementId, obj); // commit sqlSession.commit(); return key; } catch (Exception e) { sqlSession.rollback(); e.printStackTrace(); } finally { SqlsessionUtil.closeSession(sqlSession); } return 0; }
测试类
@Test public void add() throws Exception { Long start = System.currentTimeMillis(); for(int i=0;i<1000;i++){ Customer customer = new Customer(); customer.setName("普通一条条插入 "+ i); customer.setAge(15); customer.setCeroNo("000000000000"+ i); customer.setCeroType(2); customer.setSex(1); int result = customerDao.add(customer); } System.out.println("耗时 : "+(System.currentTimeMillis() - start)); } @Test public void batchInsert() throws Exception { Mapparam = new HashMap (); List list = new ArrayList (); for(int i=0;i<1000;i++){ Customer customer = new Customer(); customer.setName("批量插入" + i); customer.setAge(15); customer.setCeroNo("111111111111"+i); customer.setCeroType(2); customer.setSex(1); list.add(customer); } param.put("list",list); Long start = System.currentTimeMillis(); int result = customerDao.batchInsert(param); System.out.println("耗时 : "+(System.currentTimeMillis() - start)); }
两种都进行插入1000条测试
由于我没有用连接池等等原因,在插入了700多条的时候 junit直接挂了,
Cause: org.apache.ibatis.executor.ExecutorException: Error selecting key or setting result to parameter object.
Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException:
Data source rejected establishment of connection, message from server: "Too many connections"
数据库插入结果:
但是第二种仅仅用了2秒多就ok了。可见这种效率很高。
数据库结果
这里写了两个,其实第一种仅仅是做对比效率用。
批量新增数据记录完毕。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持创新互联。