Jaxb generated xml - remove namespace prefix



Using JAXB, when there is two namespace in the object, I added package-info.java in the pakage, it remove one namespace prefix, like this Jaxb generated xml - problem with root element prefix


My objects like this:



@XmlRootElement(name="Message",namespace="http://ift.tt/1ASHv1Z")
public class Root {
private String id;

private Codes codes;

public String getId() {
return id;
}

public void setId(String id) {
this.id = id;
}
}

@XmlRootElement(name="Codes")
public class Codes {
@XmlElement(name = "Code", namespace = "http://ift.tt/1vkLx2Q")
protected List<String> Code;
....
}


package-info.java:



@XmlSchema(namespace = "http://ift.tt/1ASHv1Z", elementFormDefault = XmlNsForm.QUALIFIED)
package com.xxxx;

import javax.xml.bind.annotation.XmlNsForm;
import javax.xml.bind.annotation.XmlSchema;


But when there is two namespaces, it turns to be like this: <Message xmlns:ns2="http://ift.tt/1vkLx2Q" xmlns="http://ift.tt/1ASHv1Z">


and some part will use <ns2:Code>xxx</ns2:Code>. Could you tell me how to remove the ns2 prefix? And put the namespace like:



<Message xmlns="http://ift.tt/1ASHv1Z">
<Codes>
<Code xmlns="http://ift.tt/1vkLx2Q">xxxx</Code>
<Code xmlns="http://ift.tt/1vkLx2Q">xxxx</Code>
</Codes>
</Message>

No comments:

Post a Comment