简体   繁体   中英

Object missing in json object structure response in jersey

This is my simplified object structure:

@xmlRootelement

ArticleList implements Serializable{

   //ArrayList of articles

}

Article implements Serializable
{

  User user;

  //ArrayList of bids

}

User implements Serializable
{

 //Properties

}


Bid implements Serializable
{

 //Properties


}

Funcion headers:

@GET
@Path("/article-search")
@Produces( MediaType.APPLICATION_JSON )
public ArticleList articleSearch() {

    //Function code here

}

I return ArticleList in jersey function. In the answer I check that exists the object Bids with elements.

The problem is that in response json is not found any element of the object Bids

The example of response:

{

    "articles":[
        {
            //Some Props. Here
            "user":{
                 //Some Props. Here
            }
            //Here list of bids is missing. It is verified that the list contains elements
        }
    ]

}

我需要在对象Article中添加Bid数组列表的获取器和设置器

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM