java - CXF rest service for uploading files in chunks -


i using cxf rest services , such services files upload:

   @post    @path("/uploadfile")    @consumes(mediatype.multipart_form_data)    public response uploadfile(list<attachment> attachments, @context httpservletrequest request) { 

i want introduce chunking files can big 100mb. dont see options on cxf api or cant find it. possible cxf?


Comments