欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

spring mvc 返回xml 根据 contenttype

程序员文章站 2022-07-14 10:42:13
...
源:http://www.233.com/ncre2/JAVA/jichu/20100823/082002104-3.html
评:
1.异常   Exception in thread "main" com.sun.xml.internal.bind.v2.runtime.IllegalAnnotationsException:
  2 counts of IllegalAnnotationExceptions

解决:  @XmlTransient

  public String getName() {

  return name;

  }

  public void setName(String name) {

  this.name = name;

  }

  }

  注意要把@XmlTransient放在get()方法前面,否则可能会出现导致运行报错: