在Java中(使用Spring Boot,如果有帮助的话)给出了任何JSON-Source和正确的嵌套模型结构-是否有可能在反序列化对象内存储优先节点的JSON-Source-String(最好不使用使用自定义解串器)?
示例:
{
"myProp" : "myValue"
}
应反序列化为对象:
private String myProp; //Initialized with "myValue"
private String jsonSource; //Initialized with whole Json-Node-Source-String (in this case "{"myProp":"myValue"}")