Fix package tangle with portlets
Introduce PortletFacesContextFactory that will be used to create the FacesContext when running in a portlet environment. This moves logic from the FacesContextHelper preventing the package tangle that would otherwise occur.
This commit is contained in:
@@ -19,11 +19,6 @@ package org.springframework.faces.webflow;
|
||||
import javax.faces.context.FacesContext;
|
||||
import javax.faces.context.FacesContextFactory;
|
||||
import javax.faces.lifecycle.Lifecycle;
|
||||
import javax.portlet.PortletContext;
|
||||
import javax.portlet.PortletRequest;
|
||||
import javax.portlet.PortletResponse;
|
||||
|
||||
import org.springframework.faces.webflow.context.portlet.PortletFacesContextImpl;
|
||||
|
||||
/**
|
||||
* Provides helper methods for getting a FacesContext that is suitable for use outside of Web Flow. Inside a running
|
||||
@@ -65,7 +60,7 @@ public class FacesContextHelper {
|
||||
* @see #getFacesContext(Object, Object, Object)
|
||||
*/
|
||||
public void releaseIfNecessary() {
|
||||
if (release) {
|
||||
if (this.release) {
|
||||
FacesContext.getCurrentInstance().release();
|
||||
}
|
||||
}
|
||||
@@ -81,9 +76,6 @@ public class FacesContextHelper {
|
||||
* @return a new {@link FacesContext} instance
|
||||
*/
|
||||
public static FacesContext newDefaultInstance(Object context, Object request, Object response, Lifecycle lifecycle) {
|
||||
if (JsfRuntimeInformation.isPortletContext(context)) {
|
||||
return new PortletFacesContextImpl((PortletContext) context, (PortletRequest) request, (PortletResponse) response);
|
||||
}
|
||||
FacesContextFactory facesContextFactory = JsfUtils.findFactory(FacesContextFactory.class);
|
||||
return facesContextFactory.getFacesContext(context, request, response, lifecycle);
|
||||
}
|
||||
|
||||
@@ -0,0 +1,50 @@
|
||||
/*
|
||||
* Copyright 2004-2012 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.springframework.faces.webflow.context.portlet;
|
||||
|
||||
import javax.faces.FacesException;
|
||||
import javax.faces.context.FacesContext;
|
||||
import javax.faces.context.FacesContextFactory;
|
||||
import javax.faces.lifecycle.Lifecycle;
|
||||
import javax.portlet.PortletContext;
|
||||
import javax.portlet.PortletRequest;
|
||||
import javax.portlet.PortletResponse;
|
||||
|
||||
import org.springframework.faces.webflow.JsfRuntimeInformation;
|
||||
|
||||
/**
|
||||
* {@link FacesContextFactory} to support portlet environments.
|
||||
* @author Phillip Webb
|
||||
*/
|
||||
public class PortletFacesContextFactory extends FacesContextFactory {
|
||||
|
||||
private final FacesContextFactory factory;
|
||||
|
||||
public PortletFacesContextFactory(FacesContextFactory factory) {
|
||||
this.factory = factory;
|
||||
}
|
||||
|
||||
@Override
|
||||
public FacesContext getFacesContext(Object context, Object request, Object response, Lifecycle lifecycle)
|
||||
throws FacesException {
|
||||
if (JsfRuntimeInformation.isPortletContext(context)) {
|
||||
return new PortletFacesContextImpl((PortletContext) context, (PortletRequest) request,
|
||||
(PortletResponse) response);
|
||||
}
|
||||
return this.factory.getFacesContext(context, request, response, lifecycle);
|
||||
}
|
||||
}
|
||||
@@ -4,7 +4,7 @@
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facesconfig_2_0.xsd"
|
||||
version="2.0">
|
||||
|
||||
|
||||
<application>
|
||||
<action-listener>org.springframework.faces.webflow.FlowActionListener</action-listener>
|
||||
<action-listener>org.springframework.faces.model.SelectionTrackingActionListener</action-listener>
|
||||
@@ -13,12 +13,13 @@
|
||||
|
||||
<factory>
|
||||
<application-factory>org.springframework.faces.webflow.FlowApplicationFactory</application-factory>
|
||||
<faces-context-factory>org.springframework.faces.webflow.context.portlet.PortletFacesContextFactory</faces-context-factory>
|
||||
</factory>
|
||||
|
||||
<lifecycle>
|
||||
<phase-listener>org.springframework.faces.support.RequestLoggingPhaseListener</phase-listener>
|
||||
</lifecycle>
|
||||
|
||||
|
||||
<render-kit>
|
||||
<render-kit-id>HTML_BASIC</render-kit-id>
|
||||
<render-kit-class>org.springframework.faces.webflow.FlowRenderKit</render-kit-class>
|
||||
|
||||
Reference in New Issue
Block a user