RestEasy - Unable to find MessageBodyReader?
问题 I've written a simple RestEasy client proxy to perform an iTunes search. It looks like this: @Path("/") public interface AppleAppStoreLookupClient { /** * Attempts to lookup an apple app store item by its ID * * @param id * The item ID * @return The app details */ @GET @Path("/lookup") @Produces(value = { "text/javascript" }) public AppleAppDetailsResponse lookupByID(@QueryParam("id") String id); } My JSON model class is simple, as well. In fact, for the first call all I want is the