是否可以将 jsog 的 @id 值分配给 POJO 类中的成员变量?
例如我有一个json:
"user": {
"@id": "1",
"name": "John Doe"
}
和Java类
@JsonIdentityInfo(generator=JSOGGenerator.class)
public class User {
private String id; // this is null
private String name;
// getters and setters ...
}
我试过@JsonProperty("@id")
了,但我id
仍然是null
。有没有人有这方面的经验?我不想id
在我的 JSON 中添加另一个字段,因为它使它很难看。
先感谢您。