XML Castor ns-uri 问题
我有这个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.