No default constructor found exception
问题 I'm developing a web application in java spring 4 framework. At one point I'm using FormDataContentDisposition class which is providing by jersey. This class used at an endpoint of my REST call like this , @RequestMapping(value = "/createArticle/", method = RequestMethod.POST) @Consumes(MediaType.MULTIPART_FORM_DATA) public ResponseEntity<Void> createNewArticle(@FormDataParam("file") InputStream uploadedInputStream, @FormDataParam("file") FormDataContentDisposition fileDetails) when i make a