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
Try using the GenericEntity.
Response.ok(new GenericEntity<List<String>>(yourCollectionOfStrings) {}).build();