A message body writer for Java class java.util.ArrayList…and MIME media type text/xml was not found

Use

List<String> list = new ArrayList<String>();
GenericEntity<List<String>> entity = new GenericEntity<List<String>>(list) {};
Response response = Response.ok(entity).build();

The Generic entity wrapper works to get the output when using the Response builder.

Reference

Leave a Comment