1

我遇到了 primefaces 4.0 + TomEE 的问题,当我使用 fileUpload primeface 的组件时,我使用它的奇数次事件 FileUploadRenderer#decode() 没有被触发。这很烦人,因为它即使在没有任何问题的情况下也能正常工作,而且我无法收到任何类型的错误消息。

在这里写下我的问题后,我一直在阅读和测试如何使用 PrimeFaces p: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:\bin</param-value>
    </init-param>
</filter>

<filter-mapping>
    <filter-name>PrimeFaces FileUpload Filter</filter-name>
    <servlet-name>Faces Servlet</servlet-name>
</filter-mapping>
<filter>
    <filter-name>SecurityFilter</filter-name>
    <filter-class>es.mypackage.SecurityFilter</filter-class>
</filter>
<filter-mapping>
    <filter-name>SecurityFilter</filter-name>
    <url-pattern>/xhtml/*</url-pattern>
</filter-mapping>

xhtml

 <ui:composition xmlns="http://www.w3.org/1999/xhtml"
template="../layout/template.xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:p="http://primefaces.org/ui">

<ui:define name="menu">
    <h:form id="menuForm">
        <p:menu model="#{menuManager.menu}" />
    </h:form>
</ui:define>

<ui:define name="content">
    <h:form id="gestionFicherosForm">
        <p:growl id="messages" showDetail="true" />
        <p:panel header="Gestion De Ficheros">
            <h:panelGrid columns="2">
                <h:outputText value="Añadir ficheros:" />
                <p:fileUpload
                    fileUploadListener="#{gestionFicheros.handleFile1Upload}"
                    mode="advanced" dragDropSupport="true" auto="true" update="messages, ficherosSubidos"
                    invalidFileMessage="Tipo de archivo no permitido." label="Examinar..."
                    multiple="true"
                    allowTypes="/(\.|\/)(csv|xls|xlsx)$/" />
            </h:panelGrid>
        </p:panel>
        <br />
        ...
        </h:form>
  </ui:define>
</ui:composition>

后备豆

    @ManagedBean
    @ViewScoped
    public class GestionFicheros implements Serializable {
    ...
    public void handleFile1Upload(FileUploadEvent event) {
    if (files == null) {
        files = new ArrayList<File>();
    }
    files.add(new File(event.getFile(),TipoFichero.AYDEN));
    FacesMessage msg = new FacesMessage("Succesful", event.getFile()
            .getFileName() + " subido.");
    FacesContext.getCurrentInstance().addMessage(null, msg);
    logger.info("fichero "+event.getFile().getFileName()+" subido.");
    }
    ...

可能是干扰正常请求过程的安全过滤器吗?但是有时?

欢迎大家提出意见。

4

0 回答 0