gpt4 book ai didi

java - 带有流 Spring 引导的 DTO 映射

转载 作者:塔克拉玛干 更新时间:2023-11-01 22:37:15 24 4
gpt4 key购买 nike

我对在 Spring Boot 中使用流将 dto 映射到键和值有疑问。我想创建类似示例的东西。你能解释一下我如何在不使用 Kryo 框架和复制序列化实例的情况下做到这一点吗?

比如Person就是Set集合。

Person
.stream()
.collect(
toMap(PersonSet::Id, and value something like 'this' ));

最佳答案

如果你的 Dto 看起来像这样:

public class Person {
private Long id;
//.. getter and setters
}

然后你可以像这样使用toMap:

Set<Person> set = ...;
Map<Long, Person> result = set.stream()
.collect(Collectors.toMap(Person::getId, Function.identity()));

关于java - 带有流 Spring 引导的 DTO 映射,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56758684/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com