当前位置:   article > 正文

利用Java8新特性stream流给集合中的某个属性赋值_用stream流给数组的多个属性赋值

用stream流给数组的多个属性赋值

今天在编写一个返回对象VO时,需要做一些处理,返回对象VO如下:
CollectListVO

@Data
@JsonIgnoreProperties(ignoreUnknown = true)
@ApiModel(value = "收藏列表")
public class CollectListVO {

    
    /**
     * 活动列表,协办单位
     */
    @ApiModelProperty(value = "活动:协办单位字符串")
    private String strSupportOrg;

    /**
     * 活动列表
     */
    @ApiModelProperty(value = "活动列表")
    private List<CollectActivityVO> activityVOList;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18

CollectActivityVO

@Data
@JsonIgnoreProperties(ignoreUnknown = true)
@ApiModel(value = "收藏活动列表")
public class CollectActivityVO {

    /**
     * id
     */
    @ApiModelProperty(value = "ID")
    private String id;

    /**
     * 名称
     */
    @ApiModelProperty(value = "名称")
    private String name;

    /**
     * 发布单位
     */
    @ApiModelProperty(value = "发布单位")
    private String publishOrg;

    /**
     * 协办单位
     */
    @ApiModelProperty(value = "协办单位")
    private List<String> supportOrg;

    /**
     * 创建时间
     */
    @ApiModelProperty(value = "创建时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private LocalDateTime createTime;

    /**
     * 封面图
     */
    @ApiModelProperty(value="封面图")
    private String coverImg;

    /** 开始时间 */
    @ApiModelProperty(value = "开始时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private LocalDateTime beginDate;

    /** 结束日期 */
    @ApiModelProperty(value = "结束日期")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private LocalDateTime endDate;

    /**
     * 收藏状态
     */
    @ApiModelProperty(value="收藏状态:0正常,1取消收藏")
    private String collectStatus;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58

因为我们的协办单位在数据库中是利用(,)逗号进行分割的,但是我们返回给前端的时候,需要转换成list,所以需要对其进行分割并且将解决赋值给CollectActivityVO中的supportOrg,我们可以利用stream流来操作,业务代码如下:

List<CollectListVO> collectListVOS =  collectMapper.getListActivity();
            for (CollectListVO cList: collectListVOS) {
                cList.getActivityVOList().stream().forEach(e->{
                    e.setSupportOrg(Arrays.asList(cList.getStrSupportOrg().split(",")));
                });
                cList.setStrSupportOrg(null);
            }
           return collectListVOS; 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

根据以上操作便能成功将分割后的对象保存到CollectActivityVO中的supportOrg中。
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/92832
推荐阅读
相关标签
  

闽ICP备14008679号