I have created an app implementing REST services locally using:
Eclipse Indigo Jersey 2.4 Tomcat 7.0.47
When running locally using Eclipse, the services work
The above exception might be a consequence exception when Jersey cannot inject some user type into e.g. @QueryParam/@PathParam. E.g. you haven't registered your ParamConverterProvider. Look above in the logs, for the first exception trace.
I resolved my case with:
@Component
public static class JerseyConfig extends ResourceConfig {
public JerseyConfig() {
this.register(LocalDateParamProvider.class);
}
}
(I use Spring.) When I inserted the above register() call, the exception has gone.