我有两个类事件和用户,它们具有多对多关系。
public class Event {
private int id;
private List<Users> users;
}
public class User {
private int id;
private List<Event> events;
}
我已阅读 @JsonIdentityInfo 注释应该有所帮助,但我看不到这样的示例。
您可以@JsonIdentityInfo
在这两个类User
中使用Event
这种方式:
import java.util.List;
import com.fasterxml.jackson.annotation.JsonIdentityInfo;
import com.fasterxml.jackson.annotation.ObjectIdGenerators;
@JsonIdentityInfo(generator = ObjectIdGenerators.UUIDGenerator.class, property="@UUID")
public class User
{
private int id;
private List<Event> events;
// Getters and setters
}
... 和
import java.util.List;
import com.fasterxml.jackson.annotation.JsonIdentityInfo;
import com.fasterxml.jackson.annotation.ObjectIdGenerators;
@JsonIdentityInfo(generator = ObjectIdGenerators.UUIDGenerator.class, property="@UUID")
public class Event
{
private int id;
private List<User> users;
// Getters and setters
}
您可以根据需要使用任何ObjectIdGenerator
s。现在,对应于多对多映射的对象的序列化和反序列化将成功:
public static void main(String[] args) throws IOException
{
ObjectMapper objectMapper = new ObjectMapper();
objectMapper.configure(SerializationFeature.INDENT_OUTPUT, true);
Event event1 = new Event();
event1.setId(1);
Event event2 = new Event();
event2.setId(2);
User user = new User();
user.setId(10);
event1.setUsers(Arrays.asList(user));
event2.setUsers(Arrays.asList(user));
user.setEvents(Arrays.asList(event1, event2));
String json = objectMapper.writeValueAsString(user);
System.out.println(json);
User deserializedUser = objectMapper.readValue(json, User.class);
System.out.println(deserializedUser);
}
希望这可以帮助。
我来这里是“谷歌搜索”,所以我最终使用了@Jackall 的答案,还有一个小模组
@JsonIdentityInfo(generator = ObjectIdGenerators.PropertyGenerator.class, property = "id")
这是因为我的 DTO 有一个名为“id”的属性,例如问题中的 Event 和 User 类。
尝试在 JsonIdentityInfo 注释中使用“范围”属性:
@JsonIdentityInfo(
generator = ObjectIdGenerators.UUIDGenerator.class,
property="@UUID",
scope=YourPojo.class
)