当前位置: 首页>>代码示例>>Java>>正文


Java JsonPath.compile方法代码示例

本文整理汇总了Java中com.jayway.jsonpath.JsonPath.compile方法的典型用法代码示例。如果您正苦于以下问题:Java JsonPath.compile方法的具体用法?Java JsonPath.compile怎么用?Java JsonPath.compile使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.jayway.jsonpath.JsonPath的用法示例。


在下文中一共展示了JsonPath.compile方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: prepPath

import com.jayway.jsonpath.JsonPath; //导入方法依赖的package包/类
/**
 * Assemble an xpath using the given json path and json wrapper.
 *
 * @param jsonPath definite json path
 * @param wrapper object representation of QPP json
 * @return xpath that correlates to supplied json path
 */
public static String prepPath(String jsonPath, JsonWrapper wrapper) {
	String base = "$";
	String leaf = jsonPath;
	int lastIndex = jsonPath.lastIndexOf('.');
	JsonWrapper metaWrapper = new JsonWrapper(wrapper, false);

	if (lastIndex > 0) {
		base = jsonPath.substring(0, lastIndex);
		leaf = jsonPath.substring(lastIndex + 1);
	}

	JsonPath compiledPath = JsonPath.compile(base);
	Map<String, Object> jsonMap = compiledPath.read(metaWrapper.toString());

	Map<String, String> metaMap = getMetaMap(jsonMap, leaf);
	String preparedPath = "";
	if (metaMap != null) {
		preparedPath = makePath(metaMap, leaf);
	}
	return preparedPath;
}
 
开发者ID:CMSgov,项目名称:qpp-conversion-tool,代码行数:29,代码来源:PathCorrelator.java

示例2: assertIsValidJsonPath

import com.jayway.jsonpath.JsonPath; //导入方法依赖的package包/类
/**
 * Asserts that the string represents a valid JsonPath expression.
 *
 * @param path         Path expression to validate.
 * @param propertyName Name of property.
 */
public void assertIsValidJsonPath(String path, String propertyName) {
    if (path == null) {
        return;
    }
    if (path.isEmpty()) {
        problemReporter.report(new Problem(this, String.format("%s cannot be empty", propertyName)));
        return;
    }
    try {
        JsonPath.compile(path);
    } catch (InvalidPathException e) {
        problemReporter.report(new Problem(this,
                                           String.format("%s with value '%s' is not a valid JsonPath. %s", propertyName, path,
                                                         e.getMessage())));
    }
}
 
开发者ID:networknt,项目名称:light-workflow-4j,代码行数:23,代码来源:ValidationContext.java

示例3: EnsureSimplePatternCompiles

import com.jayway.jsonpath.JsonPath; //导入方法依赖的package包/类
@Test
public void EnsureSimplePatternCompiles() throws Exception {
    final JsonPath pattern = JsonPath.compile("$.test");
    final Boolean read = pattern.<Boolean>read("{\"test\":true}");
    then(read).isTrue();

    // Investigate classpath problems (CNFE) in runtime
    LoggerFactory.getLogger(JsonPathTest.class);
    then(Class.forName("com.jayway.jsonpath.internal.path.CompiledPath")).isNotNull();
}
 
开发者ID:JetBrains,项目名称:teamcity-hashicorp-vault-plugin,代码行数:11,代码来源:JsonPathTest.java

示例4: validateJsonPath

import com.jayway.jsonpath.JsonPath; //导入方法依赖的package包/类
private static void validateJsonPath(String expr) {
    try {
        JsonPath.compile(expr);
    } catch (Exception e) {
        throw new QueryException("expression syntax error: " + expr, e);
    }
}
 
开发者ID:line,项目名称:centraldogma,代码行数:8,代码来源:JsonPathQuery.java

示例5: body

import com.jayway.jsonpath.JsonPath; //导入方法依赖的package包/类
public static Object body(String input, String path) {
    JsonPath jsonPath = JsonPath.compile(path);
    return jsonPath.read(input);
}
 
开发者ID:gilles-stragier,项目名称:quickmon,代码行数:5,代码来源:PlayWithSpel.java

示例6: JsonPathSelector

import com.jayway.jsonpath.JsonPath; //导入方法依赖的package包/类
public JsonPathSelector(String jsonPathStr) {
    this.jsonPathStr = jsonPathStr;
    this.jsonPath = JsonPath.compile(this.jsonPathStr);
}
 
开发者ID:fengzhizi715,项目名称:NetDiscovery,代码行数:5,代码来源:JsonPathSelector.java

示例7: extractFromJson

import com.jayway.jsonpath.JsonPath; //导入方法依赖的package包/类
/**
 * 
 * @param input
 * @param path
 * @return
 */
public static Object extractFromJson(String input, String path) {
    JsonPath jsonPath = JsonPath.compile(path);
    return jsonPath.read(input);
}
 
开发者ID:gilles-stragier,项目名称:quickmon,代码行数:11,代码来源:SpelExtensions.java


注:本文中的com.jayway.jsonpath.JsonPath.compile方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。