Today I\'ve got a problem with the PrimeFaces FileUpload. It works nice, but the files are stored in JBoss\' temporary directory so whenever I redeploy the application or ju
You can configure upload directory in the web.xml
if you want.
<filter>
<filter-name>PrimeFaces FileUpload Filter</filter-name>
<filter-class>
org.primefaces.webapp.filter.FileUploadFilter
</filter-class>
<init-param>
<param-name>uploadDirectory</param-name>
<param-value>/Users/primefaces/temp</param-value>
</init-param>
</filter>