我用Java类的Apache CXF 3.3.0生成了WSDL,我得到了:
xmlns:tns="http://impl.service.ti.commun.metier.civitas.fr/"
我不明白为什么tns以“ /”结尾,所以我检查了源Apache CXF,然后发现JaxWsImplementorInfo调用PackageUtils(https://github.com/apache/cxf/blob/master/core/src/main/java/org/apache/cxf/common/util/PackageUtils.java)方法,该方法返回:
return "http://" + String.join(".", parts) + '/';
所以,我有一个斜杠。
我想要这个:
xmlns:tns="http://impl.service.ti.commun.metier.civitas.fr"
那怎么办?
非常感谢