Отключение JAXB Выводит нулевые значения (JAXB, Java 1.8)

#java #java-8 #xsd #jaxb #unmarshalling

Вопрос:

У меня есть XSD, который я написал так:

 <?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://www.gmt.com/provisioning/gtc/xml/Messaging" elementFormDefault="qualified" attributeFormDefault="unqualified">

    <xs:element name="GTCMessage">
        <xs:annotation>
            <xs:documentation>
                GTCMessage - To Pass Around using JMS.
            </xs:documentation>
        </xs:annotation>
        <xs:complexType>
            <xs:sequence>
                <xs:element name="type" type="xs:int" minOccurs="0"/>
                <xs:element name="scope" type="xs:int" minOccurs="0"/>
                <xs:element name="code" type="xs:int" minOccurs="0"/>
                <xs:element name="target" type="xs:string" minOccurs="0"/>
                <xs:element name="message" type="xs:string" minOccurs="0"/>
            </xs:sequence>
        </xs:complexType>
    </xs:element>
    
</xs:schema>
 

Теперь я создаю классы JAXB с помощью плагина CXF maven. И я получаю класс JAXB, например (для этого использовал декомпилятор):

 import com.gmt.provisioning.gtc.xml.messaging.GTCMessage;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.cxf.xjc.runtime.JAXBToStringStyle;

@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {"type", "scope", "code", "target", "message"})
@XmlRootElement(name = "GTCMessage")
public class GTCMessage {
  protected Integer type;
  
  protected Integer scope;
  
  protected Integer code;
  
  protected String target;
  
  protected String message;
  
  public Integer getType() {
    return this.type;
  }
  
  public void setType(Integer value) {
    this.type = value;
  }
  
  public boolean isSetType() {
    return (this.type != null);
  }
  
  public Integer getScope() {
    return this.scope;
  }
  
  public void setScope(Integer value) {
    this.scope = value;
  }
  
  public boolean isSetScope() {
    return (this.scope != null);
  }
  
  public Integer getCode() {
    return this.code;
  }
  
  public void setCode(Integer value) {
    this.code = value;
  }
  
  public boolean isSetCode() {
    return (this.code != null);
  }
  
  public String getTarget() {
    return this.target;
  }
  
  public void setTarget(String value) {
    this.target = value;
  }
  
  public boolean isSetTarget() {
    return (this.target != null);
  }
  
  public String getMessage() {
    return this.message;
  }
  
  public void setMessage(String value) {
    this.message = value;
  }
  
  public boolean isSetMessage() {
    return (this.message != null);
  }
  
  public String toString() {
    return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.MULTI_LINE_STYLE);
  }
}
 

Теперь, чтобы разобраться в этом, я написал простой класс, который просто берет строку и удаляет ее:

 public class Test {

    public static void main (String args[]) {

        String abc = "<GTCMessage><type>1</type><scope>2</scope><code>1</code><message>16365343278450M</message></GTCMessage>";

        GTCMessage aMessage = JAXB.unmarshal(new StringReader(abc), GTCMessage.class);

        System.out.println(aMessage.getMessage());
    }
}
 

Но эта последняя строка выводит нуль. Я ожидал, что он напечатает значение 16365343278450M . На самом деле каждое значение в aMessage объекте равно нулю (область, тип и т.д.).

Я подозреваю, что с XSD, который я написал, может быть что-то не так, и это может привести к тому, что он пойдет не так, как эффект домино.

Любые указатели были бы полезны. Заранее спасибо.

Ответ №1:

Я смог починить его сам. Было два способа сделать это.

Сначала нужно было изменить строку, как:

 String abc = "<GTCMessage xmlns="http://www.gmt.com/provisioning/gtc/xml/Messaging"><type>1</type><scope>2</scope><code>1</code><message>16365343278450M</message></GTCMessage>";
 

или измените XSD elementFormDefault в XSD и сохраните эту исходную строку без пространства имен.

 <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://www.gmt.com/provisioning/gtc/xml/Messaging" elementFormDefault="unqualified" attributeFormDefault="unqualified">
 

Я выбрал последнее, так как оно было более управляемым для меня.