如何在封送时为属性添加前缀



我喜欢在使用脚轮进行封送时为属性添加前缀。

我想得到如下结果

<ThesaurusConcept dc:identifier="C268">
    <ScopeNote xml:lang="en">
        <LexicalValue>index heading is Atomic absorption spectroscopy</LexicalValue>
    </ScopeNote>            
</ThesaurusConcept>

但是我得到

<ThesaurusConcept identifier="C621">
<ScopeNote lang="en">
    <LexicalValue>index heading is Atomic absorption spectroscopy</LexicalValue>
    </ScopeNote>  
</ThesaurusConcept>

我的问题有答案了

我们需要在mapping.xml文件

中添加以下内容
<mapping  xmlns:dc="http://purl.org/dc/elements/1.1/"> 
<bind-xml name="dc:identifier" node="attribute" ></bind-xml>

,我们还需要使用下面的代码设置命名空间。

Marshaller  casreactmp = new Marshaller(handler);
            casreactmp.setNamespaceMapping("dc", "http://purl.org/dc/elements/1.1/");

相关内容

  • 没有找到相关文章