1

我试图用这样的上传文件:

        <h:form>
            <rich:fileUpload fileUploadListener="#{bean.test}"
                id="upload" acceptedTypes="jpeg, jpg, gif, png, bmp">
                <a4j:ajax event="uploadcomplete" render="preview" />
            </rich:fileUpload>

        </h:form>

但我总是得到错误:

 Servlet.service() for servlet [Faces Servlet] in context with path [/project] threw exception
java.lang.UnsupportedOperationException
at javax.faces.context.FacesContext.getExceptionHandler(FacesContext.java:280)
at javax.faces.context.FacesContextWrapper.getExceptionHandler(FacesContextWrapper.java:354)
at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:119) 
at ......

我以前用过,效果很好。我只是看不到我的错误。

它的上传框显示,我可以添加一个文件。当我按下“上传”并且未调用侦听器方法(public void test(FileUploadEvent event){..})时出现错误。

知道我该如何解决这个问题吗?

4

1 回答 1

0

我有一个类似的问题,事实证明,在我的打包war文件中,除了myfaces-orchestra-core20我还myfaces-orchestra-core12从另一个依赖项中溜进来。

只有在我的pom.xml文件中声明:

<dependency>
      <groupId>org.apache.myfaces.orchestra</groupId>
      <artifactId>myfaces-orchestra-core20</artifactId>
      <version>1.5</version>
</dependency>

和 Richfaces verison4.3.7.Final使它最终工作。

于 2014-09-19T07:24:12.607 回答