當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。