XmlTransient
@XmlTransient
类,字段,方法级别的注解。定义某一字段或属性不需要被映射。该注解与所有其他JAXB注释相互排斥,也就是说与其他注释连用就会报错。
和某些框架中的Ignore
注解相同。
不能和其他注解合用
@XmlTransient
@XmlElement
public void setIsbn(String isbn) {
this.isbn = isbn;
}
javax.xml.bind.DataBindingException: com.sun.xml.internal.bind.v2.runtime.IllegalAnnotationsException: 1 counts of IllegalAnnotationExceptions
com.example.demo.lesson4.Book#isbn具有互相排斥的注释 @javax.xml.bind.annotation.XmlTransient 和 @javax.xml.bind.annotation.XmlElement
没有参数
@XmlTransient
private String isbn;