Closed. This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing
The JAX-RS 1.1 specification says on page 6: If no Application subclass is present t开发者_如何学Gohe added servlet MUST be named:
What minimum version of the Servlet API 开发者_如何学运维is required to run JAX-RS 1.1 (for example Jersey 1.1)?The JSR refers to Java Servlet Specification Version 2.5.
I\'m using JAX-RS to create restful webservices in Java. I am getting to much overhead in the produced JSON.
RESTEasy (a JAX-RS implementation) has a nice client framework, eg: ServiceApi client = ProxyFactory.create(ServiceApi.class, baseUri);
Consider the following simple RESTEasy (JAX-RS) service: @Path(\"/example-service\") public interface ExampleService {