重庆分公司,新征程启航
为企业提供网站建设、域名注册、服务器等服务
1、list转换成list
不带return方式
List
ids=wrongTmpList.stream().map(c->c.getId()).collect(Collectors.toList());
带return方式
// spu集合转化成spubo集合//java8的新特性 ListspuBos=spuList.stream().map(spu -> { SpuBo spuBo = new SpuBo(); BeanUtils.copyProperties(spu, spuBo); //查询品牌名称 Brand brand = this.brandMapper.selectByPrimaryKey(spu.getBrandId()); spuBo.setBname(brand.getName()); //查询类别名称 List names = this.categoryService.queryNamesByIds(Arrays.asList(spu.getCid1(), spu.getCid2(), spu.getCid3())); spuBo.setCname(StringUtils.join(names, "-")); return spuBo; }).collect(Collectors.toList());