Package com.starflow.wf.engine.core.expression.xpath

Examples of com.starflow.wf.engine.core.expression.xpath.XPathBuilder


   
    if(logger.isDebugEnabled()) {
      logger.debug("Xpath 路径:{}, xml内容{}", value, xml);
    }
   
    XPathBuilder builder = XPathBuilder.xpath(value.substring(index+1));
    String result = builder.evaluate(xml);
   
    if(logger.isDebugEnabled()) {
      logger.debug("Xpath 解析结果:{}", result.trim());
    }
   
View Full Code Here

TOP

Related Classes of com.starflow.wf.engine.core.expression.xpath.XPathBuilder

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.