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

com.sun.faces.config.FacesInitializer Maven / Gradle / Ivy

Go to download

This is the master POM file for Oracle's Implementation of the JSF 2.2 Specification.

The newest version!
/*
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 *
 * Copyright (c) 2009-2015 Oracle and/or its affiliates. All rights reserved.
 *
 * The contents of this file are subject to the terms of either the GNU
 * General Public License Version 2 only ("GPL") or the Common Development
 * and Distribution License("CDDL") (collectively, the "License").  You
 * may not use this file except in compliance with the License.  You can
 * obtain a copy of the License at
 * https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html
 * or packager/legal/LICENSE.txt.  See the License for the specific
 * language governing permissions and limitations under the License.
 *
 * When distributing the software, include this License Header Notice in each
 * file and include the License file at packager/legal/LICENSE.txt.
 *
 * GPL Classpath Exception:
 * Oracle designates this particular file as subject to the "Classpath"
 * exception as provided by Oracle in the GPL Version 2 section of the License
 * file that accompanied this code.
 *
 * Modifications:
 * If applicable, add the following below the License Header, with the fields
 * enclosed by brackets [] replaced by your own identifying information:
 * "Portions Copyright [year] [name of copyright owner]"
 *
 * Contributor(s):
 * If you wish your version of this file to be governed by only the CDDL or
 * only the GPL Version 2, indicate your decision by adding "[Contributor]
 * elects to include this software in this distribution under the [CDDL or GPL
 * Version 2] license."  If you don't indicate a single choice of license, a
 * recipient has the option to distribute your version of this file under
 * either the CDDL, the GPL Version 2 or to extend the choice of license to
 * its licensees as provided above.  However, if you add GPL Version 2 code
 * and therefore, elected the GPL Version 2 license, then the option applies
 * only if the new code is made subject to such option by the copyright
 * holder.
 */

package com.sun.faces.config;


import com.sun.faces.RIConstants;
import static com.sun.faces.RIConstants.ANNOTATED_CLASSES;
import javax.faces.application.ResourceDependencies;
import javax.faces.application.ResourceDependency;
import javax.faces.bean.ManagedBean;
import javax.faces.component.FacesComponent;
import javax.faces.component.UIComponent;
import javax.faces.convert.FacesConverter;
import javax.faces.convert.Converter;
import javax.faces.event.ListenerFor;
import javax.faces.event.ListenersFor;
import javax.faces.render.FacesBehaviorRenderer;
import javax.faces.render.Renderer;
import javax.faces.validator.FacesValidator;
import javax.faces.validator.Validator;
import javax.faces.webapp.FacesServlet;
import javax.servlet.ServletContainerInitializer;
import javax.servlet.ServletContext;
import javax.servlet.ServletException;
import javax.servlet.ServletRegistration;
import javax.servlet.annotation.HandlesTypes;
import java.util.Set;
import java.util.Map;
import java.net.MalformedURLException;
import java.util.HashSet;
import javax.annotation.Resource;
import javax.faces.component.behavior.FacesBehavior;
import javax.faces.event.NamedEvent;
import javax.faces.event.PhaseListener;
import javax.faces.view.facelets.FaceletsResourceResolver;

/**
 * Adds mappings /faces, *.jsf, and *.faces for the
 * FacesServlet (if it hasn't already been mapped) if the following conditions
 * are met:
 *
 * 
    *
  • * The Set of classes passed to this initializer is not * empty, or *
  • *
  • * /WEB-INF/faces-config.xml exists. *
  • *
*/ @SuppressWarnings({"UnusedDeclaration"}) @HandlesTypes({ ManagedBean.class, FacesComponent.class, FacesValidator.class, FacesConverter.class, FacesBehaviorRenderer.class, ResourceDependency.class, ResourceDependencies.class, ListenerFor.class, ListenersFor.class, UIComponent.class, Validator.class, Converter.class, Renderer.class, FacesBehavior.class, PhaseListener.class, FaceletsResourceResolver.class, Resource.class, NamedEvent.class }) public class FacesInitializer implements ServletContainerInitializer { // NOTE: Loggins should not be used with this class. private static final String FACES_SERVLET_CLASS = FacesServlet.class.getName(); // -------------------------------- Methods from ServletContainerInitializer public void onStartup(Set> classes, ServletContext servletContext) throws ServletException { Set> annotatedClasses = new HashSet>(); if (classes != null) { annotatedClasses.addAll(classes); } servletContext.setAttribute(ANNOTATED_CLASSES, annotatedClasses); if (shouldCheckMappings(classes, servletContext)) { InitFacesContext initFacesContext = new InitFacesContext(servletContext); if (null == initFacesContext) { throw new ServletException("Unable to initialize Mojarra"); } try { Map existing = servletContext.getServletRegistrations(); for (ServletRegistration registration : existing.values()) { if (FACES_SERVLET_CLASS.equals(registration.getClassName())) { // FacesServlet has already been defined, so we're // not going to add additional mappings; if ( isADFApplication() ) { //For Bug 21114997 and 21322338 registration.addMapping("*.xhtml", "*.jsf"); } return; } } ServletRegistration reg = servletContext.addServlet("FacesServlet", "javax.faces.webapp.FacesServlet"); if ("true".equalsIgnoreCase(servletContext.getInitParameter("javax.faces.DISABLE_FACESSERVLET_TO_XHTML")) ) { reg.addMapping("/faces/*", "*.jsf", "*.faces"); } else { reg.addMapping("/faces/*", "*.jsf", "*.faces", "*.xhtml"); } servletContext.setAttribute(RIConstants.FACES_INITIALIZER_MAPPINGS_ADDED, Boolean.TRUE); // The following line is temporary until we can solve an ordering // issue in V3. Right now the JSP container looks for a mapping // of the FacesServlet in the web.xml. If it's not present, then // it assumes that the application isn't a faces application. In this // case the JSP container will not register the ConfigureListener // definition from our TLD nor will it parse cause or JSP TLDs to // be parsed. servletContext.addListener(com.sun.faces.config.ConfigureListener.class); } finally { // Bug 20458755: The InitFacesContext was not being cleaned up, resulting in // a partially constructed FacesContext being made available // to other code that re-uses this Thread at init time. initFacesContext.releaseCurrentInstance(); initFacesContext.release(); } } } // --------------------------------------------------------- Private Methods private boolean isADFApplication() { boolean hasResource = false; try { ClassLoader contextClassLoader = Thread.currentThread().getContextClassLoader(); if (null != contextClassLoader) { hasResource = (contextClassLoader.getResource("oracle/adf/view/rich/context/AdfFacesContext.class") != null ); } } catch (Exception e) { // Intentionally swallow exception. This should be logged // but for the comment at the top stating that Loggins should // not be used for this class. I assume that means Logging, and // not Kenny Loggins. } return hasResource; } private boolean shouldCheckMappings(Set> classes, ServletContext context) { if (classes != null && !classes.isEmpty()) { return true; } // no JSF specific parameters found, check for a WEB-INF/faces-config.xml try { return (context.getResource("/WEB-INF/faces-config.xml") != null); } catch (MalformedURLException mue) { } return false; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy