- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中net.sf.saxon.expr.XPathContextMajor.getController()
方法的一些代码示例,展示了XPathContextMajor.getController()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XPathContextMajor.getController()
方法的具体详情如下:
包路径:net.sf.saxon.expr.XPathContextMajor
类名称:XPathContextMajor
方法名:getController
暂无
代码示例来源:origin: net.sf.saxon/Saxon-HE
/**
* Set an object that will be used to resolve URIs used in
* fn:unparsed-text() and related functions.
*
* @param resolver An object that implements the UnparsedTextURIResolver interface, or
* null.
* @since 9.5
*/
public void setUnparsedTextURIResolver(UnparsedTextURIResolver resolver) {
contextObject.getController().setUnparsedTextURIResolver(resolver);
}
代码示例来源:origin: net.sf.saxon/Saxon-HE
/**
* Get the collection finder associated with this configuration. This is used to dereference
* collection URIs used in the fn:collection and fn:uri-collection functions
*
* @return the CollectionFinder to be used
* @since 9.7
*/
public CollectionFinder getCollectionFinder() {
return contextObject.getController().getCollectionFinder();
}
代码示例来源:origin: net.sf.saxon/Saxon-HE
/**
* Set the collection finder associated with this configuration. This is used to dereference
* collection URIs used in the fn:collection and fn:uri-collection functions
*
* @param cf the CollectionFinder to be used
* @since 9.7
*/
public void setCollectionFinder(CollectionFinder cf) {
contextObject.getController().setCollectionFinder(cf);
}
代码示例来源:origin: net.sf.saxon/Saxon-HE
/**
* Get the CollectionURIResolver used for resolving references to collections.
* If none has been set on the Controller, returns the
* CollectionURIResolver registered with the Configuration
*
* @return the resolver for references to collections
* @since 9.4
* @deprecated since 9.7 - use {@link #getCollectionFinder()}
*/
public CollectionURIResolver getCollectionURIResolver() {
return contextObject.getController().getCollectionURIResolver();
}
代码示例来源:origin: net.sf.saxon/Saxon-HE
/**
* Set the CollectionURIResolver used for resolving collection URIs.
* Defaults to the CollectionURIResolver registered with the Configuration
*
* @param resolver the resolver for references to collections
* @since 9.4
* @deprecated since 9.7 - use {@link #setCollectionFinder(CollectionFinder)}
*/
public void setCollectionURIResolver(CollectionURIResolver resolver) {
contextObject.getController().setCollectionURIResolver(resolver);
}
代码示例来源:origin: net.sf.saxon/Saxon-HE
/**
* Get the URI resolver for unparsed text.
*
* @return the user-supplied unparsed text URI resolver if there is one, or the
* system-defined one otherwise
* @since 9.5
*/
public UnparsedTextURIResolver getUnparsedTextURIResolver() {
return contextObject.getController().getUnparsedTextURIResolver();
}
代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.saxon
/**
* Get the URI resolver for unparsed text.
*
* @return the user-supplied unparsed text URI resolver if there is one, or the
* system-defined one otherwise
* @since 9.5
*/
public UnparsedTextURIResolver getUnparsedTextURIResolver() {
return contextObject.getController().getUnparsedTextURIResolver();
}
代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.saxon
/**
* Get the collection finder associated with this configuration. This is used to dereference
* collection URIs used in the fn:collection and fn:uri-collection functions
*
* @return the CollectionFinder to be used
* @since 9.7
*/
public CollectionFinder getCollectionFinder() {
return contextObject.getController().getCollectionFinder();
}
代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.saxon
/**
* Set an object that will be used to resolve URIs used in
* fn:unparsed-text() and related functions.
*
* @param resolver An object that implements the UnparsedTextURIResolver interface, or
* null.
* @since 9.5
*/
public void setUnparsedTextURIResolver(UnparsedTextURIResolver resolver) {
contextObject.getController().setUnparsedTextURIResolver(resolver);
}
代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.saxon
/**
* Set the CollectionURIResolver used for resolving collection URIs.
* Defaults to the CollectionURIResolver registered with the Configuration
*
* @param resolver the resolver for references to collections
* @since 9.4
* @deprecated since 9.7 - use {@link #setCollectionFinder(CollectionFinder)}
*/
public void setCollectionURIResolver(CollectionURIResolver resolver) {
contextObject.getController().setCollectionURIResolver(resolver);
}
代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.saxon
/**
* Get the CollectionURIResolver used for resolving references to collections.
* If none has been set on the Controller, returns the
* CollectionURIResolver registered with the Configuration
*
* @return the resolver for references to collections
* @since 9.4
* @deprecated since 9.7 - use {@link #getCollectionFinder()}
*/
public CollectionURIResolver getCollectionURIResolver() {
return contextObject.getController().getCollectionURIResolver();
}
代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.saxon
/**
* Set the collection finder associated with this configuration. This is used to dereference
* collection URIs used in the fn:collection and fn:uri-collection functions
*
* @param cf the CollectionFinder to be used
* @since 9.7
*/
public void setCollectionFinder(CollectionFinder cf) {
contextObject.getController().setCollectionFinder(cf);
}
代码示例来源:origin: net.sf.saxon/Saxon-HE
/**
* Get the current mode.
*
* @return the current mode. May return null if the current mode is the default mode.
*/
public Component.M getCurrentMode() {
Component.M m = currentMode;
if (m == null) {
RuleManager rm = getController().getRuleManager();
if (rm != null) {
return rm.getUnnamedMode().getDeclaringComponent();
} else {
return null;
}
} else {
return m;
}
}
代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.saxon
/**
* Get the current mode.
*
* @return the current mode. May return null if the current mode is the default mode.
*/
public Component.M getCurrentMode() {
Component.M m = currentMode;
if (m == null) {
RuleManager rm = getController().getRuleManager();
if (rm != null) {
return rm.getUnnamedMode().getDeclaringComponent();
} else {
return null;
}
} else {
return m;
}
}
代码示例来源:origin: net.sourceforge.saxon/saxon
/**
* Get the Base URI for the node, that is, the URI used for resolving a relative URI contained
* in the node. This will be the same as the System ID unless xml:base has been used.
*
* @return the base URI of the node
*/
public String getBaseURI() {
if (node == null) {
// the base URI of a constructed parentless document or element node is the static base URI of the
// instruction/expression that created it
PipelineConfiguration pipe = savedXPathContext.getController().makePipelineConfiguration();
return pipe.getLocationProvider().getSystemId(instruction.getLocationId());
} else {
return node.getBaseURI();
}
}
代码示例来源:origin: org.opengis.cite.saxon/saxon9
/**
* Get the Base URI for the node, that is, the URI used for resolving a relative URI contained
* in the node. This will be the same as the System ID unless xml:base has been used.
*
* @return the base URI of the node
*/
public String getBaseURI() {
if (node == null) {
// the base URI of a constructed parentless document or element node is the static base URI of the
// instruction/expression that created it
PipelineConfiguration pipe = savedXPathContext.getController().makePipelineConfiguration();
return pipe.getLocationProvider().getSystemId(instruction.getLocationId());
} else {
return node.getBaseURI();
}
}
代码示例来源:origin: net.sourceforge.saxon/saxon
/**
* Get a PullProvider that delivers the stream of events corresponding to the tree rooted at this virtual node
* @return the PullProvider for the events in the virtual tree
*/
public PullProvider getPuller() {
if (node == null) {
VirtualTreeWalker walker = new VirtualTreeWalker(instruction, savedXPathContext);
walker.setPipelineConfiguration(savedXPathContext.getController().makePipelineConfiguration());
walker.setNameCode(getNameCode());
return walker;
} else {
return TreeWalker.makeTreeWalker(node);
}
}
代码示例来源:origin: org.opengis.cite.saxon/saxon9
/**
* Get a PullProvider that delivers the stream of events corresponding to the tree rooted at this virtual node
* @return the PullProvider for the events in the virtual tree
*/
public PullProvider getPuller() {
if (node == null) {
VirtualTreeWalker walker = new VirtualTreeWalker(instruction, savedXPathContext);
walker.setPipelineConfiguration(savedXPathContext.getController().makePipelineConfiguration());
walker.setNameCode(getNameCode());
return walker;
} else {
return TreeWalker.makeTreeWalker(node);
}
}
代码示例来源:origin: org.opengis.cite.saxon/saxon9
/**
* Evaluate the variable. That is,
* get the value of the select expression if present or the content
* of the element otherwise, either as a tree or as a sequence
*/
public ValueRepresentation getSelectValue(XPathContext context) throws XPathException {
if (select==null) {
throw new AssertionError("*** No select expression for global variable $" +
getVariableQName().getDisplayName() + "!!");
} else {
XPathContextMajor c2 = context.newCleanContext();
c2.setOrigin(this);
UnfailingIterator initialNode =
SingletonIterator.makeIterator(c2.getController().getContextForGlobalVariables());
initialNode.next();
c2.setCurrentIterator(initialNode);
if (stackFrameMap != null) {
c2.openStackFrame(stackFrameMap);
}
return ExpressionTool.evaluate(select, evaluationMode, c2, referenceCount);
}
}
代码示例来源:origin: net.sourceforge.saxon/saxon
/**
* Evaluate the variable. That is,
* get the value of the select expression if present or the content
* of the element otherwise, either as a tree or as a sequence
*/
public ValueRepresentation getSelectValue(XPathContext context) throws XPathException {
if (select==null) {
throw new AssertionError("*** No select expression for global variable $" +
getVariableQName().getDisplayName() + "!!");
} else {
XPathContextMajor c2 = context.newCleanContext();
c2.setOrigin(this);
UnfailingIterator initialNode =
SingletonIterator.makeIterator(c2.getController().getContextForGlobalVariables());
initialNode.next();
c2.setCurrentIterator(initialNode);
if (stackFrameMap != null) {
c2.openStackFrame(stackFrameMap);
}
return ExpressionTool.evaluate(select, evaluationMode, c2, referenceCount);
}
}
我有一个现有的 CentOS 7 服务器(当然是由其他人设置的)运行 Saxon。如果我运行: /usr/bin/java net.sf.saxon.Transform -s:input.xml -x
我目前正在使用各种版本的 Saxon-Processor 进行纯 XSL 转换。下面是我的简短样式表,根据我的问题的需要进行了简化: Call of func_
我正在尝试从 java 代码中抛出异常,该异常将在使用 Saxon 时包含来自 xsl:message 标记的消息。 使用下面的 xslt 文件 exception me
Saxon似乎不是gradle试图发送它的地方: Not Found For request 'GET /artifact/net/sf/saxon/saxon-HE/9.9.0-2/saxon-HE
我最近获得了 Saxon-PE 的试用许可证,并希望在 Camel 中使用此版本的 Saxon。我下载了 Saxon-PE-9.6.0.8 jar 并通过 maven 将它们包含到我的项目中。我正在使
我正在使用 Saxon 9.0.4 并将 Home Edition jar 包含在我的 Eclipse 项目中。但是每当我发出查询字符串时,什么也没有发生,并且我没有得到任何输出。当我从命令行使用以下
我想使用 xpath 3.1 fn:transform 创建一个输出文档。以下是 A.xsl。它在直接运行时创建 A.xml(从氧气中):
我对此很陌生。 我有一个查询和一个 xml 文件。 我可以写一个对该特定文件的查询 for $x in doc("file:///C:/Users/Foo/IdeaProjects/XQuery/sr
简单的问题! 如何找出我正在运行的 Saxon 版本?我有“sazon9he.jar”文件,但我似乎无法弄清楚确切的版本(即它是 9.7 还是 9.6...) 谢谢! 最佳答案 在发布问题几分钟后终于
Saxon 是否有办法按排序顺序返回节点,其中“顺序”由返回节点中的 1 个或多个节点/属性定义? 换句话说,XPath 查询可以是: /Order/Dates/Date order by . 谢谢
我发现 saxon 9.9.1-4 中 XQueryCompiler 的行为非常奇怪。当我第一次运行 XQuery 时,无论 XQuery 复杂性如何,编译都会花费大量时间(400 毫秒)——例如 m
我正在使用 Saxon 解析器将大文件拆分为较小的文件。下面是我的示例代码, TransformerFactory tFactory = TransformerFactory.newInstanc
我们通常会进行大量的 XPath 查询,但几乎没有一个重复。因此每个查询都会被编译、执行,然后被抛出。 在 Saxon 中是否有一种模式,我们应该设置告诉它构建一次性使用的编译查询,这样在这种模式下使
我们将撒克逊语与我们的图书馆一起运送。我们以代码形式向其传递许可证,因此不发送 saxon-library.lic 文件。我们的系统一切都运行良好。 但是,我们的一位客户遇到了一个问题,当 hazel
我最初应该通过声明我们的代码使用嵌入式 saxon 扩展函数来发布我的问题 - saxon:parse($xml) 返回 xml 的根元素/节点。但是,在 Saxon-HE 中,该扩展不再可用 - 所
给定以下xml: Wells 使用 Xerces,以下 xpath 查询有效: //urn:company.com:catalog.01:author 当我使用
有谁知道用于在 XSLT 中执行合并的内置函数,还是我需要编写自己的函数? 我有一些像这样的 xml: Worldwide WorldwideName 78 GB
如何将多个字段传递到 Saxon-HE ExtensionFunction 中? 扩展通常需要一个参数数组: new ExtensionFunction { @Override pub
我想知道是否有人有使用 XQuery 的经验,因为 free version of Saxon 支持它。 。一般可以认为它是完整且可用的吗? 最佳答案 是的,我发现免费版本快速且稳定。 XQuery
我有一个将 Json 转换为 Json 的 XQuery。我制作了一个可以在命令行上运行的演示版本,我想在 java 中使用它。 问题是我不知道如何在 XQuery 中设置参数。 我的源文件“1.js
我是一名优秀的程序员,十分优秀!