当前位置: 代码迷 >> J2SE >> jaxb错误 Class has two properties of the same name "username"
  详细解决方案

jaxb错误 Class has two properties of the same name "username"

热度:790   发布时间:2016-04-23 20:15:59.0
jaxb异常 Class has two properties of the same name "username"
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;

@XmlRootElement(name = "User")
@XmlAccessorType(XmlAccessType.FIELD)
public class User {

private String id;

private String username;

private String password;

private Expense e;

public String getId() {
return id;
}

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

@XmlAttribute(name = "ID")
public String getUsername() {
return username;
}

public void setUsername(String username) {
this.username = username;
}

public String getPassword() {
return password;
}

public void setPassword(String password) {
this.password = password;
}

}
------解决思路----------------------
This is a JAXB configuration issue, the JAXB runtime thinks there are  
two properties to be serialized with the same name, one that is the  
protected and field and one which is the JavaBean property method.

 "If JAXB binds a class to XML, then, by default, all public members  
will be bound, i.e., public getter and setter
    pairs, or public fields. Any protected, package-visible or private  
member is bound if it is annotated with a suitable
    annotation such as XmlElement or XmlAttribute."

If you annotate your Artifact class with the annotation:

   @XmlAccessorType(XmlAccessType.FIELD)

then you do not need to annotate the fields with @XmlElement and the  
setter/getter methods will be ignored.
  相关解决方案