I am using Jersey based restful Service implementation strategy to build a service which will be used to upload files. My service class name is : UploadFileService.java (See
I too got the same exception.I did the following changes in web.xml
jersey.config.server.provider.classnames
org.glassfish.jersey.filter.LoggingFilter;org.glassfish.jersey.moxy.json.MoxyFeature;org.glassfish.jersey.media.multipart.MultiPartFeature
and changed jersey 2.7 to 2.9 .I do not know what change of this 2 has solved the issue.