PrimeFaces:文件上载视图未更新

时间:2015-05-06 15:25:24

标签: jsf-2 primefaces

我使用spring security设置了一个JSF项目。我试图让FileUpload PrimeFaces在用户完成浏览文件后显示所选文件。

我正在使用:

http://www.primefaces.org/showcase/ui/file/upload/single.xhtml

enter image description here

问题是,在选择文件后,视图中不显示任何内容,并且不会突出显示上传按钮。有帮助吗? 我确实尝试过基本文件上传,它确实更新了视图中的文件名

基本视图 http://www.primefaces.org/showcase/ui/file/upload/basic.xhtml

enter image description here

可能是FireFox版本我使用v31.0吗?

<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html>
<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:b="http://bootsfaces.net/ui"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:p="http://primefaces.org/ui">
<h:head>

</h:head>

<h:body>

<h:form enctype="multipart/form-data">
  <p:growl id="messages" showDetail="true" />
  <p:fileUpload value="#{fileUploadController.file}" mode="simple"     skinSimple="true"/>
  <p:commandButton value="Submit" ajax="false" actionListener="#{fileUploadController.upload}" disabled="false" />
</h:form>

<h:form enctype="multipart/form-data">
  <p:fileUpload fileUploadListener="#{fileUploadController.handleFileUpload}" mode="advanced" dragDropSupport="false"
       update="messages" sizeLimit="100000" fileLimit="3" allowTypes="/(\.|\/)(txt|gif|jpe?g|png)$/" />
   <p:growl id="messages" showDetail="true" />
</h:form>

</h:body>
</html>

我在web.xml中也有这个:

<!-- PrimeFaces Client Side Validation -->
<context-param>
 <param-name>primefaces.CLIENT_SIDE_VALIDATION</param-name>
 <param-value>true</param-value>
</context-param>
<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>

POM:

    <!-- PrimeFaces -->
    <dependency>
        <groupId>org.primefaces</groupId>
        <artifactId>primefaces</artifactId>
        <version>5.2</version>
        <scope>compile</scope>
    </dependency>

1 个答案:

答案 0 :(得分:0)

之前我遇到过类似的问题。 定义文件上载组件时,请确保fileupload组件是唯一的。从javaBeans获取id。

关于文件名,这是一个CSS问题。 如果您打开检查器并挖掘<tb>标记的图层和图层,则应该会看到文件的名称。使用CSS调整以使名称可见。