You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To not forget, I have a remark related to this subject.
When I select multiple files, in server (by the way, I use Jetty in this project), I have multiple parts with the same name (files):
If you take a look at HttpServletRequest (Servlet API) you will see that they are two methods related to parts:
getPart(String name): Part
getParts(): Collection
So, here we have a problem (in Servlet API) because they are multiple parts with the same name (files in my case), and getPart(name) returns only one Part (probably is the first).
In my
TestCntroller.java
I have a web method like:In HTML template I have something like:
Is someone use a such approach approach in their Pippo's based application?
Or
List<FileItem> files
instead ofFileItems[] files
.The text was updated successfully, but these errors were encountered: