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

org.springframework.web.context.support.AbstractRefreshableWebApplicationContext Maven / Gradle / Ivy

There is a newer version: 5.3.34
Show newest version
/*
 * Copyright 2002-2007 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.context.support;

import javax.servlet.ServletConfig;
import javax.servlet.ServletContext;

import org.springframework.beans.factory.config.ConfigurableListableBeanFactory;
import org.springframework.context.support.AbstractRefreshableApplicationContext;
import org.springframework.core.io.Resource;
import org.springframework.core.io.support.ResourcePatternResolver;
import org.springframework.ui.context.Theme;
import org.springframework.ui.context.ThemeSource;
import org.springframework.ui.context.support.UiApplicationContextUtils;
import org.springframework.util.SystemPropertyUtils;
import org.springframework.web.context.ConfigurableWebApplicationContext;
import org.springframework.web.context.ServletConfigAware;
import org.springframework.web.context.ServletContextAware;
import org.springframework.web.context.request.RequestScope;
import org.springframework.web.context.request.SessionScope;

/**
 * {@link org.springframework.context.support.AbstractRefreshableApplicationContext}
 * subclass which implements the
 * {@link org.springframework.web.context.ConfigurableWebApplicationContext}
 * interface for web environments. Provides a "configLocations" property,
 * to be populated through the ConfigurableWebApplicationContext interface
 * on web application startup.
 *
 * 

This class is as easy to subclass as AbstractRefreshableApplicationContext: * All you need to implements is the {@link #loadBeanDefinitions} method; * see the superclass javadoc for details. Note that implementations are supposed * to load bean definitions from the files specified by the locations returned * by the {@link #getConfigLocations} method. * *

Interprets resource paths as servlet context resources, i.e. as paths beneath * the web application root. Absolute paths, e.g. for files outside the web app root, * can be accessed via "file:" URLs, as implemented by * {@link org.springframework.core.io.DefaultResourceLoader}. * *

In addition to the special beans detected by * {@link org.springframework.context.support.AbstractApplicationContext}, * this class detects a bean of type {@link org.springframework.ui.context.ThemeSource} * in the context, under the special bean name "themeSource". * *

This is the web context to be subclassed for a different bean definition format. * Such a context implementation can be specified as "contextClass" context-param * for {@link org.springframework.web.context.ContextLoader} or as "contextClass" * init-param for {@link org.springframework.web.servlet.FrameworkServlet}, * replacing the default {@link XmlWebApplicationContext}. It will then automatically * receive the "contextConfigLocation" context-param or init-param, respectively. * *

Note that WebApplicationContext implementations are generally supposed * to configure themselves based on the configuration received through the * {@link ConfigurableWebApplicationContext} interface. In contrast, a standalone * application context might allow for configuration in custom startup code * (for example, {@link org.springframework.context.support.GenericApplicationContext}). * * @author Juergen Hoeller * @since 1.1.3 * @see #loadBeanDefinitions * @see org.springframework.web.context.ConfigurableWebApplicationContext#setConfigLocations * @see org.springframework.ui.context.ThemeSource * @see XmlWebApplicationContext */ public abstract class AbstractRefreshableWebApplicationContext extends AbstractRefreshableApplicationContext implements ConfigurableWebApplicationContext, ThemeSource { /** Servlet context that this context runs in */ private ServletContext servletContext; /** Servlet config that this context runs in, if any */ private ServletConfig servletConfig; /** Namespace of this context, or null if root */ private String namespace; /** Paths to XML configuration files */ private String[] configLocations; /** the ThemeSource for this ApplicationContext */ private ThemeSource themeSource; public AbstractRefreshableWebApplicationContext() { setDisplayName("Root WebApplicationContext"); } public void setServletContext(ServletContext servletContext) { this.servletContext = servletContext; } public ServletContext getServletContext() { return this.servletContext; } public void setServletConfig(ServletConfig servletConfig) { this.servletConfig = servletConfig; if (servletConfig != null && this.servletContext == null) { this.servletContext = servletConfig.getServletContext(); } } public ServletConfig getServletConfig() { return this.servletConfig; } public void setNamespace(String namespace) { this.namespace = namespace; if (namespace != null) { setDisplayName("WebApplicationContext for namespace '" + namespace + "'"); } } public String getNamespace() { return this.namespace; } public void setConfigLocations(String[] locations) { this.configLocations = new String[locations.length]; for (int i = 0; i < locations.length; i++) { this.configLocations[i] = resolvePath(locations[i]); } } public String[] getConfigLocations() { return (this.configLocations != null ? this.configLocations : getDefaultConfigLocations()); } /** * Return the default config locations to use, for the case where no * explicit config locations have been specified. *

The default implementation returns null, * requiring explicit config locations. * @see #setConfigLocations */ protected String[] getDefaultConfigLocations() { return null; } /** * Register request/session scopes, a {@link ServletContextAwareProcessor}, etc. */ protected void postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory) { beanFactory.registerScope(SCOPE_REQUEST, new RequestScope()); beanFactory.registerScope(SCOPE_SESSION, new SessionScope(false)); beanFactory.registerScope(SCOPE_GLOBAL_SESSION, new SessionScope(true)); beanFactory.addBeanPostProcessor(new ServletContextAwareProcessor(this.servletContext, this.servletConfig)); beanFactory.ignoreDependencyInterface(ServletContextAware.class); beanFactory.ignoreDependencyInterface(ServletConfigAware.class); } /** * Resolve the given path, replacing placeholders with corresponding * system property values if necessary. Applied to config locations. * @param path the original file path * @return the resolved file path * @see org.springframework.util.SystemPropertyUtils#resolvePlaceholders */ protected String resolvePath(String path) { return SystemPropertyUtils.resolvePlaceholders(path); } /** * This implementation supports file paths beneath the root of the ServletContext. * @see ServletContextResource */ protected Resource getResourceByPath(String path) { return new ServletContextResource(this.servletContext, path); } /** * This implementation supports pattern matching in unexpanded WARs too. * @see ServletContextResourcePatternResolver */ protected ResourcePatternResolver getResourcePatternResolver() { return new ServletContextResourcePatternResolver(this); } /** * Initialize the theme capability. */ protected void onRefresh() { this.themeSource = UiApplicationContextUtils.initThemeSource(this); } public Theme getTheme(String themeName) { return this.themeSource.getTheme(themeName); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy