I am using Jersey to upload file. I defined the method:
@POST @Path(\"/upload\") @Consumes(\"multipart/form-data\") public Collection uploadIm
You need to add Maven dependencies related to Multipart handling.
org.jvnet mimepull 1.6 com.sun.jersey.contribs jersey-multipart 1.18.1
If you need check http://mvnrepository.com/ for the versions of the dependencies for your Jersey version.