MyBatis批量插入数据

一、假设有实体phone:

@Data
public class Phone implements Serializable {
	// 数据库中已设置自增
    private Integer id;

    private String name;

    private String type;

    private Date time;

    private static final long serialVersionUID = 1L;
}

二、Dao接口(PhoneDao)

@Mapper
@Component
public interface PhoneDao {
	/**
     * 批量插入数据
     *
     * @param phoneList 
     * @return
     */
    int insertBatch(List<Phone> phoneList);
    // 注意参数名称phoneList,
    // 需跟xml文件中collection=“ ”中的参数名相同。
}

三、xml文件


  <insert id="insertBatch">
    insert into phone(name,type ,time) values
    <foreach collection="phoneList" item="phone" separator=",">
        (#{phone.name},#{phone.type},#{phone.time})
    </foreach>
  </insert>
  

四、service层调用

@Service
public class PhoneService {
    @Resource
    private PhoneDao phoneDao;

    /**
     * 批量插入
     * @param phoneList
     */
    public int insertBatch(List<Phone> phoneList){
        return phoneDao.insertBatch(phoneList);
    }
}
上一篇:Windows 11 系统中打开屏幕会比现在更快、更直观


下一篇:tp5.0框架手机短信验证码