生成的 xml 表单模式格式正确。
喜欢:
<tns:SCommand xmlns:tns="https/bla/bla/command" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<tns:Command xsi:type="tns:MyCommand">
当我构建 XML 表单 Java 代码(XMLbeans)时,派生类型的命名空间是不同的
前任:
CommandType ct = MyCommand.Factory.newInstance();
xml是
<myc:Command xsi:type="MyCommand" xmlns:myc="https/bla/bla/command">
生成 XML 表单 xmlbeans 后,名称空间与模式匹配失败。前缀不同,uri 正在添加。如何解决这个问题?