Dozer
https://github.com/jblemee/Dozer/blob/master/core/src/site/xdoc/documentation/copybyreference.xml<field copy-by-reference="true"><a>copyByReference</a>
<b>copyByReferencePrime</b>
</field>
http://www.54tianzhisheng.cn/2017/10/14/JsonPath/
JsonPath —— JSON 解析神器
String author = JsonPath.read(json, "$.store.book[0].author");
$ | 根节点 |
@ | 当前节点 |
.or[] | 子节点 |
.. | 选择所有符合条件的节点 |
* | 所有节点 |
[] | 迭代器标示,如数组下标 |
[,] | 支持迭代器中做多选 |
[start:end:step] | 数组切片运算符 |
?() | 支持过滤操作 |
() | 支持表达式计算 |