XML Castor ns-uri 问题

发布于 2024-11-04 11:51:58 字数 552 浏览 0 评论 0原文

我有这个 xml/soap 项目。

到处都有一种叫做 ns-uri / 命名空间 uri 的东西。

例如这里:

<class name="org.webmedia.test.pojo.City">
       <map-to xml="addCityRequest" ns-uri="http://krams915.blogspot.com/ws/schema/oss"/>

       <field name="id" type="integer">
          <bind-xml name="id" node="element"/>
       </field>

       <field name="name" type="string">
          <bind-xml name="name" node="element"/>
       </field>
</class>

它是做什么用的?我可以改变它吗?我可以删除它吗?它会导致网站失效

i have this xml / soap project.

there is everywhere something called ns-uri / namespace uri.

for example here:

<class name="org.webmedia.test.pojo.City">
       <map-to xml="addCityRequest" ns-uri="http://krams915.blogspot.com/ws/schema/oss"/>

       <field name="id" type="integer">
          <bind-xml name="id" node="element"/>
       </field>

       <field name="name" type="string">
          <bind-xml name="name" node="element"/>
       </field>
</class>

what is it for? can i change it? can i remove it? it leads to dead website

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

冷情妓 2024-11-11 11:51:58

ns-uri 指的是 XML 命名空间 URI。没有它,Castor 的绑定将无法正常工作。

是的,您可以更改它(但它必须与目标 XML 的命名空间 URI 匹配),并且您可以删除它(但它可能会生成/解析错误的 XML)。事实上,它是一个死 URL 并不重要 - 命名空间 URI 只是字符串标识符,通常看起来像 URL,但它们不必去任何地方。

The ns-uri refers to a XML namespace URI. Without it, Castor's binding won't work properly.

Yes, you can change it (but it has to match the namespace URI of the target XML), and yes you can remove it (but it will likely generate/parse the wrong XML). The fact that it's a dead URL doesn't matter - namespace URIs are just string identifiers that often look like URLs, but they don't have to go anywhere.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文