gpt4 book ai didi

jsf - FileDownload 和 FileUpload JSF Primefaces 不起作用

转载 作者:行者123 更新时间:2023-12-04 06:42:07 25 4
gpt4 key购买 nike

我使用的是 PrimeFaces 3.1.2、NetBeans 7.2、JSF 2.1 和 GlassFish 3.1.2。

我正在使用从 http://www.primefaces.org/showcase/ui/fileUploadAuto.jsf 获得的实际代码
http://www.primefaces.org/showcase/ui/fileDownload.jsf .

当我运行文件上传代码时,它根本不起作用。文件未上传,也未显示成功消息。但如果文件大小超过提到的大小,则会显示文件大小过大的消息。

这是我的观点:

<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:p="http://primefaces.org/ui">
<h:head>
</h:head>
<h:body>
<h:form enctype="multipart/form-data">
<p:fileUpload fileUploadListener="#{fileUploadController.handleFileUpload}"
mode="advanced"
update="messages"
auto="true"
sizeLimit="100000"
allowTypes="/(\.|\/)(gif|jpe?g|png)$/"/>
<p:growl id="messages" showDetail="true"/>
</h:form>
</h:body>
</html>

这是我的支持 bean:
package com;

import javax.faces.application.FacesMessage;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.SessionScoped;
import javax.faces.context.FacesContext;
import org.primefaces.event.FileUploadEvent;

@ManagedBean
@SessionScoped
public class FileUploadController {
public void handleFileUpload(FileUploadEvent event) {
FacesMessage msg = new FacesMessage("Succesful", event.getFile().getFileName() + " is uploaded.");
FacesContext.getCurrentInstance().addMessage(null, msg);
}
}

它与 PrimeFaces 展示页面中的代码基本相同。

与文件下载代码类似;当我点击下载时没有任何 react 。一个弹出窗口在我什至注意到它之前打开和关闭。我在获取资源流(下载部分)中提到了图像文件,但我不知道有什么问题。代码也与 PrimeFaces 展示页面中的代码基本相同。

我在 Netbeans 的 Glassfish 下看不到任何日志或错误。我也不知道如何在必要时启用日志记录。

最佳答案

您需要做的第一件事是向您的应用程序添加一些库。事实上,PrimeFaces 文件上传依赖于 Apache commons-file-upload 和 commons-io 库。因此,下载它们并将它们添加到您的 WEB-INF/lib 路径中:

您可以从以下链接下载。

http://commons.apache.org/io/

http://commons.apache.org/fileupload/

此外,您必须将其配置为 web.xml

<filter>
<filter-name>PrimeFaces FileUpload Filter</filter-name>
<filter-class>org.primefaces.webapp.filter.FileUploadFilter</filter-class>
<init-param>
<param-name>thresholdSize</param-name>
<param-value>51200</param-value>
</init-param>
<init-param>
<param-name>uploadDirectory</param-name>
<param-value>C:\etc</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>PrimeFaces FileUpload Filter</filter-name>
<servlet-name>Faces Servlet</servlet-name>
</filter-mapping>

另外,如果您想以编程方式设置更改上传文件的目的地,请查看:

PrimeFaces FileUpload File Saving Destination

关于jsf - FileDownload 和 FileUpload JSF Primefaces 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13471199/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com