All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.springframework.web.jsf.DelegatingPhaseListenerMulticaster Maven / Gradle / Ivy

There is a newer version: 6.1.6
Show newest version
/*
 * Copyright 2002-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
 *
 *      https://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 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.
 *
 * 

Configure this listener multicaster in your {@code faces-config.xml} file * as follows: * *

 * <application>
 *   ...
 *   <phase-listener>
 *     org.springframework.web.jsf.DelegatingPhaseListenerMulticaster
 *   </phase-listener>
 *   ...
 * </application>
* * The multicaster will delegate all {@code beforePhase} and {@code afterPhase} * 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. * *

Note: This multicaster's {@code getPhaseId()} method will always return * {@code ANY_PHASE}. The phase id exposed by the target listener beans * will be ignored; all events will be propagated to all listeners. * *

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 */ @SuppressWarnings("serial") public class DelegatingPhaseListenerMulticaster implements PhaseListener { @Override public PhaseId getPhaseId() { return PhaseId.ANY_PHASE; } @Override public void beforePhase(PhaseEvent event) { for (PhaseListener listener : getDelegates(event.getFacesContext())) { listener.beforePhase(event); } } @Override public void afterPhase(PhaseEvent event) { for (PhaseListener listener : getDelegates(event.getFacesContext())) { 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. *

The default implementation delegates to {@code getWebApplicationContext}. * 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}) * @see #getWebApplicationContext */ protected ListableBeanFactory getBeanFactory(FacesContext facesContext) { return getWebApplicationContext(facesContext); } /** * Retrieve the web application context to delegate bean name resolution to. *

The default implementation delegates to FacesContextUtils. * @param facesContext the current JSF context * @return the Spring web application context (never {@code null}) * @see FacesContextUtils#getRequiredWebApplicationContext */ protected WebApplicationContext getWebApplicationContext(FacesContext facesContext) { return FacesContextUtils.getRequiredWebApplicationContext(facesContext); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy