No message body writer has been found for response class ArrayList

前端 未结 7 1505
北荒
北荒 2020-12-09 19:21

While I am trying to return List its throwing No message body writer has been found for response class ArrayList.

I have code as follows:

@POST 
@Pat         


        
相关标签:
7条回答
  • 2020-12-09 19:53

    Try using the GenericEntity.

    Response.ok(new GenericEntity<List<String>>(yourCollectionOfStrings) {}).build();
    
    0 讨论(0)
提交回复
热议问题