Dropwizard file upload

后端 未结 3 1041
野的像风
野的像风 2021-02-01 18:36

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.

   
3条回答
  •  不要未来只要你来
    2021-02-01 19:23

    With Dropwizard 0.9.2 you have to add the dependency:

    
        io.dropwizard
        dropwizard-forms
        ${dropwizard.version}
        pom
    
    

    as well as register the multipart feature:

        environment.jersey().register(MultiPartFeature.class);
    

提交回复
热议问题