j2ee primefaces fileupload file saving destination

前端 未结 1 1558
暖寄归人
暖寄归人 2020-12-11 05:00

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

相关标签:
1条回答
  • 2020-12-11 05:48

    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>
    
    0 讨论(0)
提交回复
热议问题