Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to use JAXB annotations with RestEasy in order to choose names and elements order in my JSON output.

Somehow, it isn't working, even if the RestEasy doc says it's possible.

Here some code:

@XmlRootElement(name = "translation")
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "translation", propOrder = {
    "key",
    "value"
})
public class TranslationDTO {

  public TranslationDTO() {}
  public TranslationDTO(Translation translation) {
    setKey(translation.getTranslationKey().getValue());
    setValue(translation.getContent());
    //setCreationDate(translation.getCreatedTimestamp());
  }

  @XmlElement(name = "key")
    private String key;

  @XmlElement(name = "value")
    private String value;

    //private Date creationDate;

    @XmlElement(name = "key")
    public String getKey() {
    return key;
  }

    public void setKey(String key) {
    this.key = key;
  }

    @XmlElement(name = "value")
    public String getValue() {
    return value;
  }

    public void setValue(String value) {
    this.value = value;
  }

    /*@XmlElement(name = "creationDate")
    public Date getCreationDate() {
    return creationDate;
  }

    public void setCreationDate(Date creationDate) {
    this.creationDate = creationDate;
  }*/

}

And here an example output:

{
    "name":"i18nhelp",
    "currentVersion":"1",
    "currentTotalKeys":28,
    "oldTotalKeys":0,
    "totalLanguages":2,
    "languageDtos":[{
        "name":"Anglais",
        "iso639":"en",
        "totalCurTrans":28,
        "newCurTrans":28,
        "oldTrans":0
    },
    {
        "name":"Français",
        "iso639":"fr",
        "totalCurTrans":28,
        "newCurTrans":28,
        "oldTrans":0
    }]
}

The JAXB annotations don't seem to be taken in account at all.

Any idea will be considered...

share|improve this question
isn't it XmlAccessType.PROPERTY to automatically bind getters and XmlAccessType.FIELD for fields? did you try removing the redundant annotations? or instead going with XmlAccessType.NONE? – guido May 29 '12 at 15:39
1  
The following may help: blog.bdoughan.com/2011/06/using-jaxbs-xmlaccessortype-to.html – Blaise Doughan May 29 '12 at 15:41
Thank you for the feedback. Nice and helpful blog, by the way, Blaise. Actually, the JAXB annotations don't seem to be taken in account at all. I edited the question to make it more clear. – Traroth May 30 '12 at 7:53
@guido: after reading Blaise's blog, I think I should use XmlAccessType.NONE and remove the annotations to my getters. – Traroth May 30 '12 at 7:58

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.