Java 个对象的 JSONPath 解析器

JSONPath resolver for Java objects

如何通过应用 JSON 路径表达式从 Java 对象而不是 JSON 字符串获取值?


我收到一个从 JSON 字符串创建的 Java 对象(通过 Jackson,无法影响它):

public class MyJSONInputClass {
    private String foo;
    private int[] bar = { 1, 5, 9 };
    private OtherClass baz;
    ....
}

我还有一些 JSON路径表达式作为 Java 字符串反映对象中的值(它们可能要复杂得多):

"$.foo"
"$.bar[5]"
"$.baz.someProperty"

我想使用生成的 java 对象(解组后 MyJSONInputClass 的实例)解析这些表达式:

public Object resolve(MyJSONInputClass input, String expression) {
    ...
}

我使用 Jackson to create a Map<String, Object> from the given Java object (containing other maps for properties not parseable as primitive types). Then JSONPath 中的 ObjectMapper 可以读取它并评估表达式。

public Object resolve(Object input, String expression) {
    // Get the mapper with default config.
    ObjectMapper mapper = new ObjectMapper();

    // Make the object traversable by JSONPath.
    Map<String, Object> mappedObject = mapper.convertValue(input, Map.class);

    // Evaluate that expression
    Object output = JsonPath.read(mappedObject, expression);

    return output;
}

要包括的依赖项:

<dependency>
    <groupId>com.jayway.jsonpath</groupId>
    <artifactId>json-path</artifactId>
    <version>1.2.0</version>
</dependency>

<dependency>
    <groupId>com.fasterxml.jackson.core</groupId>
    <artifactId>jackson-databind</artifactId>
    <version>2.4.4</version>
</dependency>

一些注意事项:

  • 适用于分层对象。
  • 未测试圆形结构。

我们不是增加了一点转换为映射的开销,而是我们可以直接在 Java 对象上使用 JXPath 库