1

有人可以告诉我定义 targetnamespace 与 spring-ws 之间的区别吗

http://checkingaccountservice.example.zoo 

<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
        targetNamespace="http://checkingaccountservice.example.zoo"
        elementFormDefault="qualified">
    ...
<xsd:schema>

对比

http://zoo/example/checkingaccountservice/

<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
        targetNamespace="http://zoo/example/checkingaccountservice"
        elementFormDefault="qualified">
    ...
<xsd:schema>

提前致谢:)

4

1 回答 1

1

说白了,没有区别。

XML 命名空间 URI 将被视为不透明字符串。它只是一个防止冲突的唯一字符串。无论您使用“。” 或者 '/' 字符在那个字符串中是一个选择,只要你能保证这个字符串是唯一的。

希望这可以帮助,

于 2013-09-19T12:07:41.380 回答