/* * Copyright 2002-2008 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.web.jsf; import java.util.Collection; import java.util.Iterator; import javax.faces.context.FacesContext; import javax.faces.event.PhaseEvent; import javax.faces.event.PhaseId; import javax.faces.event.PhaseListener; import org.springframework.beans.factory.BeanFactoryUtils; import org.springframework.beans.factory.ListableBeanFactory; import org.springframework.web.context.WebApplicationContext; /** * JSF PhaseListener implementation that delegates to one or more Spring-managed * PhaseListener beans coming from the Spring root WebApplicationContext. * * <p>Configure this listener multicaster in your <code>faces-config.xml</code> file * as follows: * * <pre class="code"> * <application> * ... * <phase-listener> * org.springframework.web.jsf.DelegatingPhaseListenerMulticaster * </phase-listener> * ... * </application></pre> * * The multicaster will delegate all <code>beforePhase</code> and <code>afterPhase</code> * events to all target PhaseListener beans. By default, those will simply be obtained * by type: All beans in the Spring root WebApplicationContext that implement the * PhaseListener interface will be fetched and invoked. * * <p>Note: This multicaster's <code>getPhaseId()</code> method will always return * <code>ANY_PHASE</code>. <b>The phase id exposed by the target listener beans * will be ignored; all events will be propagated to all listeners.</b> * * <p>This multicaster may be subclassed to change the strategy used to obtain * the listener beans, or to change the strategy used to access the ApplicationContext * (normally obtained via {@link FacesContextUtils#getWebApplicationContext(FacesContext)}). * * @author Juergen Hoeller * @author Colin Sampaleanu * @since 1.2.7 */ public class DelegatingPhaseListenerMulticaster implements PhaseListener { public PhaseId getPhaseId() { return PhaseId.ANY_PHASE; } public void beforePhase(PhaseEvent event) { Collection listeners = getDelegates(event.getFacesContext()); Iterator it = listeners.iterator(); while (it.hasNext()) { PhaseListener listener = (PhaseListener) it.next(); listener.beforePhase(event); } } public void afterPhase(PhaseEvent event) { Collection listeners = getDelegates(event.getFacesContext()); Iterator it = listeners.iterator(); while (it.hasNext()) { PhaseListener listener = (PhaseListener) it.next(); listener.afterPhase(event); } } /** * Obtain the delegate PhaseListener beans from the Spring root WebApplicationContext. * @param facesContext the current JSF context * @return a Collection of PhaseListener objects * @see #getBeanFactory * @see org.springframework.beans.factory.ListableBeanFactory#getBeansOfType(Class) */ protected Collection getDelegates(FacesContext facesContext) { ListableBeanFactory bf = getBeanFactory(facesContext); return BeanFactoryUtils.beansOfTypeIncludingAncestors(bf, PhaseListener.class, true, false).values(); } /** * Retrieve the Spring BeanFactory to delegate bean name resolution to. * <p>The default implementation delegates to <code>getWebApplicationContext</code>. * Can be overridden to provide an arbitrary ListableBeanFactory reference to * resolve against; usually, this will be a full Spring ApplicationContext. * @param facesContext the current JSF context * @return the Spring ListableBeanFactory (never <code>null</code>) * @see #getWebApplicationContext */ protected ListableBeanFactory getBeanFactory(FacesContext facesContext) { return getWebApplicationContext(facesContext); } /** * Retrieve the web application context to delegate bean name resolution to. * <p>The default implementation delegates to FacesContextUtils. * @param facesContext the current JSF context * @return the Spring web application context (never <code>null</code>) * @see FacesContextUtils#getRequiredWebApplicationContext */ protected WebApplicationContext getWebApplicationContext(FacesContext facesContext) { return FacesContextUtils.getRequiredWebApplicationContext(facesContext); } }