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

We have a Java List of objects which is marshalled via JSON which is created by Jersey.

The List is called "rows". When there is data we have:

{"records":"1","page":"1","total":"1","rows":[{"id":"692334","cell":["ECS","D","201009","","0","ABCD","11","11","","201009"]}]}

When there is no data we have:

{"page":0,"records":0,"total":0}

How can we make Jersey include the rows field even if the List has a size of 0? What we want is:

{"page":0,"records":0,"total":0,"rows":[]}

Note that we are already using a JAXB ContextResolver to ensure the JSON is correct for a single row. Not sure if we can configure this resolver to solve our problem.

share|improve this question

4 Answers

up vote 4 down vote accepted

Use Jackson JAX-RS provider instead of alternatives (badgerfish/jettison), which does not do XML-to-JSON conversion. Missing array is most likely due to this conversion. There are multiple ways to configure this (jersey mailing list should have a few), and latest versions may expose it directly via Jersey API.

share|improve this answer
Never got around to trying this but it does seem like the best option. – Marcus Nov 18 '10 at 0:17

Have you solved this? im using the latest version of jersey, not sure what provider im using, but i havent messed much with the contextresolver except for the notation used:

@Component 
@Provider 
public class JaxbContextResolver implements ContextResolver<JAXBContext> { 

private JAXBContext context; 
private Class<?>[] types = {
                              OrganicaMobileEntity.class,
                         FuncionarioEntidadeMobile.class,
                                    EtapaDTOMobile.class,
                              ProcessTypeDTOMobile.class, 
                             NotificationDTOMobile.class,
                            ServicoOnlineDTOMobile.class}; 

public JaxbContextResolver() throws Exception { 

    this.context = new JSONJAXBContext(
            (JSONConfiguration.natural()
                              .rootUnwrapping(false)//assure the rootlement name appears in the json structure
                              .build()), 
            types); 
} 
@Override
public JAXBContext getContext(Class<?> objectType) { 
      for (Class type : types) {
                       if (type == objectType) {
                          return context;
                       }
                   }
                  return null;
} 

}

The thing is, if dont fill a specific property of a bean or a list is empty, they simply wont appear....

share|improve this answer
Never solved it. We have a hack/workaround, we just return the fixed string {"page":0,"records":0,"total":0,"rows":[]} when our collection has 0 items. – Marcus May 24 '11 at 13:24

Maybe this helps you: http://jersey.java.net/nonav/documentation/latest/json.html#d4e903

seems that some array problems can be solved by using something like this:

JSONConfiguration.mapped().arrays("yourArrayName").build()

At least it solves the issue, when the list contains only 1 item it's also formated as an JSON array.

share|improve this answer

I managed to solve JSON array "bug" in Jersey json library. Secret ingredient is previusly mentioned JSONConfiguration and ContextResolver magic. See my following post it has a full code example, customized ContextResolver and rest Application class might be somewhat fuzzy logic in first look.

How to serialize Java primitives using Jersey REST

  • json array for zero or single-element Java lists
  • primitive integer or boolean fields without quotation chars
share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.