Json – Runtime error when calling a REST service that returns List<String> deployed in WebLogic
I'm deploying a REST service written in Java on WebLogic. The method I'm interested in has this signature: @GET @Produces({ MediaType.APPLICATION_JSON }) @Path("/myway/mock") public List<String> getMyMock(@QueryParam("pic") String pic, @QueryParam("year") int year) After I deploy this service to WebLogic I'm calling…