RestEasy - 在不同的操作中进行不同的XML编组

时间:2011-06-12 19:05:09

标签: xml rest marshalling resteasy

假设我有一个用户类,其中包含登录名,全名和上次登录信息。还有Post,其中包含作者,创建日期和内容。类可能看起来像这样(请暂时忽略公共修饰符):

@XmlAccessorType(value = XmlAccessType.NONE)
public class User {

  @XmlElement
  public long id;

  @XmlElement
  public String login;

  public Date lastLogin;

  @XmlElement
  public String fullName;
}

@XmlAccessorType(value = XmlAccessType.NONE)
public class Post {
  @XmlElement
  public User author;

  @XmlElement
  public String content

  @XmlElement
  public Date dateCreated
}

在我的休息动作中,当我在xml中返回单个帖子或帖子集合时,每个帖子都包含具有登录名和全名的作者信息。但是当我想以xml格式获得用户(或集合)时,我应该怎么做,所有字段值(在我的例子中,包括lastLogin字段)?

0 个答案:

没有答案