我正在运行我的JSF项目,使用Spring Boot启动它并利用整个Spring环境。配置为:Mojarra 2.2.8 + Primefaces 5.1 + Spring Boot 1.1.9。这就是我的POM.xml文件的样子:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.mycompany</groupId>
<artifactId>project</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>war</packaging>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.1.9.RELEASE</version>
<relativePath /> <!-- lookup parent from repository -->
</parent>
<dependencies>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.sun.faces</groupId>
<artifactId>jsf-api</artifactId>
<version>${jsf.version}</version>
</dependency>
<dependency>
<groupId>com.sun.faces</groupId>
<artifactId>jsf-impl</artifactId>
<version>${jsf.version}</version>
</dependency>
<dependency>
<groupId>org.primefaces</groupId>
<artifactId>primefaces</artifactId>
<version>5.1</version>
</dependency>
<dependency>
<groupId>org.primefaces.themes</groupId>
<artifactId>all-themes</artifactId>
<version>1.0.10</version>
</dependency>
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>jsp-api</artifactId>
<version>2.1</version>
</dependency>
<dependency>
<groupId>javax.inject</groupId>
<artifactId>javax.inject</artifactId>
<version>1</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
</dependency>
<dependency>
<groupId>javax.el</groupId>
<artifactId>el-api</artifactId>
<version>2.2</version>
</dependency>
<dependency>
<groupId>org.glassfish.web</groupId>
<artifactId>el-impl</artifactId>
<version>2.2</version>
</dependency>
</dependencies>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<start-class>com.tesicnor.workplace.monitor.Application</start-class>
<java.version>1.7</java.version>
<tomcat.version>7.0.57</tomcat.version>
<jsf.version>2.2.8</jsf.version>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
如上所述,我将项目配置为在tomcat 7.0.57(兼容Servlet 3.0)启动程序中运行。所有JSF函数都正常工作,但问题是我无法使Primefaces p:fileUpload
组件工作,无论是基本版本还是高级版本。文件上载监听器不会被调用,也不会抛出任何错误。
那是我的豆子代码:
@ManagedBean
@javax.faces.bean.ViewScoped
public class Bean {
public void handleFileUpload(FileUploadEvent event) {
FacesMessage message = new FacesMessage("Succesful", event.getFile()
.getFileName() + " is uploaded.");
FacesContext.getCurrentInstance().addMessage(null, message);
System.out.println("Uploaded!");
}
}
这就是我的xhtml文件在模板下的样子:
<ui:composition template="/WEB-INF/template.xhtml"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:p="http://primefaces.org/ui">
<ui:define name="content">
<h:form>
<p:fileUpload fileUploadListener="#{bean.handleFileUpload}" />
</h:form>
</ui:define>
</ui:composition>
根本没有关于代码的任何特殊之处,它必须是服务器配置问题。当我删除文件并单击上传时,FacesServlet
会被点击。因此请求已执行且未显示任何javascript错误。但是当我在调用我的方法的InvokeApplicationPhase
类中执行调试时,我发现没有要处理的事件。所以FileUploadEvent
没有附加到循环中。
此外,那是使用Tomcat 7和JSF版本正确执行文件上载的另一个项目的调试堆栈:
此处正在调用NativeFileUploadDecoder
。但是,我的Spring启动项目中没有发生这种情况,并且没有调用FileUpload#visitTree
下面的方法。
我尝试了其他选择并发现当我使用一些<h:form enctype="multipart/form-data">
时,即使我放置了一个普通的h:commandButton
,也不会调用内部组件的任何操作方法。
答案 0 :(得分:4)
最后,我使用Apache Commons库进行了工作。与我们在标准 web.xml 文件中可能执行的操作类似,这是我的上下文初始化程序:
@Bean
public ServletContextInitializer initializer() {
return new ServletContextInitializer() {
@Override
public void onStartup(ServletContext servletContext)
throws ServletException {
servletContext.setInitParameter("primefaces.THEME", "bluesky");
servletContext.setInitParameter(
"javax.faces.FACELETS_SKIP_COMMENTS", "true");
servletContext.setInitParameter(
"com.sun.faces.expressionFactory",
"com.sun.el.ExpressionFactoryImpl");
servletContext.setInitParameter("primefaces.UPLOADER",
"commons");
}
};
}
我明确告诉Primefaces使用 commons 上传器,就像在docs中说的那样(另一种选择是使用 native ,这是不行的)。
然后,只需将这两个依赖项添加到项目中,我们就准备好了:
<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
<version>1.3</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.2</version>
</dependency>
我保持线程打开以获得基于
另见:
答案 1 :(得分:4)
可能还需要将xml过滤器配置传输到基于Java的配置:
<filter-mapping>
<filter-name>PrimeFaces FileUpload Filter</filter-name>
<servlet-name>Faces Servlet</servlet-name>
</filter-mapping>
到@Configuration
@Bean
public FilterRegistrationBean FileUploadFilter() {
FilterRegistrationBean registration = new FilterRegistrationBean();
registration.setFilter(new org.primefaces.webapp.filter.FileUploadFilter());
registration.setName("PrimeFaces FileUpload Filter");
return registration;
}
结合上述答案,对我有用
答案 2 :(得分:4)
只是为了把我的两分钱,用Spring启动1.4.2.RELEASE,Primefaces 6.0,OCP Soft重写2.0.12.Final,JSF 2.1.29-08和应用程序部署在Tomcat 8上,我还需要禁用spring hiddenHttpMethodFilter。
@Bean
public FilterRegistrationBean hiddenHttpMethodFilterDisabled(
@Qualifier("hiddenHttpMethodFilter") HiddenHttpMethodFilter filter) {
FilterRegistrationBean filterRegistrationBean = new FilterRegistrationBean(filter);
filterRegistrationBean.setEnabled(false);
return filterRegistrationBean;
}
我花了这个问题差不多两天了,最后我试图逐个禁用弹簧过滤器,所以我希望它会帮助别人。