- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中net.ontopia.topicmaps.xml.XTMTopicMapReader.setFollowTopicRefs()
方法的一些代码示例,展示了XTMTopicMapReader.setFollowTopicRefs()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XTMTopicMapReader.setFollowTopicRefs()
方法的具体详情如下:
包路径:net.ontopia.topicmaps.xml.XTMTopicMapReader
类名称:XTMTopicMapReader
方法名:setFollowTopicRefs
[英]PUBLIC: If set to false topicRef elements pointing to external documents will not be traversed. The default is that those the documents pointed to by those elements will be loaded (as per the XTM specification).
[中]PUBLIC:如果设置为false,指向外部文档的topicRef元素将不会被遍历。默认情况下,将加载这些元素指向的文档(根据XTM规范)。
代码示例来源:origin: ontopia/ontopia
@Override
protected TopicMapReaderIF getImporter() throws IOException {
// create topic map importer
XTMTopicMapReader reader;
if (base_address == null) {
reader = new XTMTopicMapReader(url);
} else {
reader = new XTMTopicMapReader(url, base_address);
}
if (ref_handler != null)
reader.setExternalReferenceHandler(ref_handler);
else
reader.setFollowTopicRefs(followTopicRefs);
reader.setValidation(validate);
return reader;
}
代码示例来源:origin: ontopia/ontopia
((XTMTopicMapReader)importer).setFollowTopicRefs(false);
代码示例来源:origin: ontopia/ontopia
reader.setFollowTopicRefs(false);
TopicMapIF exportedMap = ImportExportUtils.getReader(xtm).read();
代码示例来源:origin: ontopia/ontopia
reader.setFollowTopicRefs(false);
TopicMapIF exportedMap = ImportExportUtils.getReader(xtm).read();
本文整理了Java中net.ontopia.topicmaps.xml.XTMTopicMapReader.setFollowTopicRefs()方法的一些代码示例,展示了XTMTopicMapRe
本文整理了Java中net.ontopia.topicmaps.xml.XTMTopicMapReader.read()方法的一些代码示例,展示了XTMTopicMapReader.read()的具体
本文整理了Java中net.ontopia.topicmaps.xml.XTMTopicMapReader.()方法的一些代码示例,展示了XTMTopicMapReader.()的具体用法。这些代码示
本文整理了Java中net.ontopia.topicmaps.xml.XTMTopicMapReader.importInto()方法的一些代码示例,展示了XTMTopicMapReader.imp
本文整理了Java中net.ontopia.topicmaps.xml.XTMTopicMapReader.readAll()方法的一些代码示例,展示了XTMTopicMapReader.readAl
本文整理了Java中net.ontopia.topicmaps.xml.XTMTopicMapReader.setExternalReferenceHandler()方法的一些代码示例,展示了XTMT
我是一名优秀的程序员,十分优秀!