I have to upload a file from my site yet cnt seem to get it working with drop wizard.
Here is the form from my site.
You could do the saving to the server in lesser number of lines using nio
java.nio.file.Path outputPath = FileSystems.getDefault().getPath(, fileName);
Files.copy(fileInputStream, outputPath);
Also, if you're using 0.7.0-rc2, you will need this dependency in your pom.xml
com.sun.jersey.contribs
jersey-multipart
1.18