Manju
Manju

Reputation: 64

Wicket FileUpload for large files effectively by slicing the file and uploading asynchronously

Hi I am working on large file upload component. I am looking for efficient way of uploading large files. I googled and found few does by slicing the large files and uploading asynchronously. I am looking for the similar implementation in Wicket. Is there any similar way in Wicket to achieve the same?

Upvotes: 1

Views: 480

Answers (1)

Thomas
Thomas

Reputation: 2261

You could look into integrating Wicket with jQuery FileUpload which supports asynchronous and chunked uploads.

There is a tutorial and a working example on GitHub. I have used this solution for multi-file upload in two projects and it works great.

Upvotes: 1

Related Questions