I used Jquery file upload with backend java. Am getting
if(ServletFileUpload.isMultipartContent(request) is true.
but
List<FileItem> items = uploadHandler.parseRequest(request);
returns empty.I have not accessed request parameters before.
I google it and found change from /*
to /*.action
in web.xml will solve the problem. But by this change the struts2 project is not running.