As per the PrimeFaces Users Guide:
2.2 Dependencies
PrimeFaces only requires a JAVA 5+ runtime and a JSF 2.x implementation as mandatory
dependencies. There’re some optional libraries for certain features.
Dependency | Version | Type | Description
-------------------+------------+----------+---------------------------------
JSF runtime | 2.0 or 2.1 | Required | Apache MyFaces or Oracle Mojarra
itext | 2.1.7 | Optional | DataExporter (PDF).
apache poi | 3.7 | Optional | DataExporter (Excel).
rome | 1.0 | Optional | FeedReader.
commons-fileupload | 1.2.1 | Optional | FileUpload
commons-io | 1.4 | Optional | FileUpload
(note the last two entries)
and
3.34 FileUpload
...
Getting started with FileUpload
First thing to do is to configure the fileupload filter which parses the multipart request. FileUpload filter should map to Faces Servlet.
<filter>
<filter-name>PrimeFaces FileUpload Filter</filter-name>
<filter-class>org.primefaces.webapp.filter.FileUploadFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>PrimeFaces FileUpload Filter</filter-name>
<servlet-name>Faces Servlet</servlet-name>
</filter-mapping>
Simple File Upload
Simple file upload mode works in legacy mode with a file input whose value should be an
UploadedFile instance.
<h:form enctype="multipart/form-data">
<p:fileUpload value="#{fileBean.file}" mode="simple" />
<p:commandButton value="Submit" ajax="false"/>
</h:form>
...
Summarized, you need to ensure the following:
commons-fileupload and commons-io are present in the webapp's runtime classpath (just dropping the JARs in /WEB-INF/lib ought to be sufficient).
The FileUploadFilter is mapped on the exact <servlet-name> of the FacesServlet as is been definied in your web.xml. If you've given it a <servlet-name> of for example facesServlet, then you need to edit it in the <filter-mapping> example as well.
The enctype of the <h:form> needs to be set to multipart/form-data.
In simple file upload with mode="simple", ajax must be disabled on any PrimeFaces command buttons/links by ajax="false".
I must however admit that the PrimeFaces Users Guide is not explicit enough on the last two points.
Further there are another possible causes unrelated to PrimeFaces configuration:
- There's another
Filter in your webapp which runs before the PrimeFaces file upload filter and has already consumed the request body by e.g. calling getParameter(), getParameterMap(), getReader(), etcetera. A request body can be parsed only once. When you call one of those methods before the file upload filter does its job, then the file upload filter will get an empty request body.
If you're still having problems, well, debug the HTTP traffic. Open the webbrowser's developer toolset (press F12 in Chrome/Firebug/IE9) and check the Net/Network section.