Generated by
JDiff

org.springframework.web.context Documentation Differences

This file contains all the changes in documentation in the package org.springframework.web.context as colored differences. Deletions are shown like this, and additions are shown like this.
If no deletions or additions are shown in an entry, the HTML tags will be what has changed. The new HTML tags are shown in the differences. If no documentation existed, and then some was added in a later version, this change is noted in the appropriate class pages of differences, but the change is not shown on this page. Only changes in existing text are shown here. Similarly, documentation which was inherited from another class or interface is not shown here.
Note that an HTML error in the new documentation may cause the display of other documentation changes to be presented incorrectly. For instance, failure to close a <code> tag will cause all subsequent paragraphs to be displayed differently.

Class ConfigurableWebEnvironment, void initPropertySources(ServletContext, ServletConfig)

Replace any org.springframework.core.env.PropertySource.StubPropertySource stub property source instances acting as placeholders with real servlet context/config property sources using the given parameters. @param servletContext the ServletContext (may not be {@code null}) @param servletConfig the ServletConfig ({@code null} if not available) @see org.springframework.web.context.support.WebApplicationContextUtils#initServletPropertySources( org.springframework.core.env.MutablePropertySources, ServletContext, ServletConfig)

Class ServletConfigAware

Interface to be implemented by any object that wishes to be notified notified of thethe ServletConfig (typically determined by the WebApplicationContext) that it runs in.

Note: Only satisfied if actually running within a Servlet-specific WebApplicationContext. If this callback interface is encountered elsewhereOtherwise, an exceptionno ServletConfig will be thrown on bean creationset. @author Juergen Hoeller @author Chris Beams @since 2.0 @see ServletContextAware

Class ServletConfigAware, void setServletConfig(ServletConfig)

Set the ServletConfig that this object runs in.

Invoked after population of normal bean properties but before an init callback like InitializingBean's afterPropertiesSet or a custom init-method. Invoked after ApplicationContextAware's setApplicationContext. @param servletConfig ServletConfig object to be used by this object @see org.springframework.beans.factory.InitializingBean#afterPropertiesSet @see org.springframework.context.ApplicationContextAware#setApplicationContext


Class ServletContextAware

Interface to be implemented by any object that wishes to be notified notified of thethe ServletContext (typically determined by the WebApplicationContext) that it runs in. @author Juergen Hoeller @author Chris Beams @since 12.03.2004 @see ServletConfigAware
Class ServletContextAware, void setServletContext(ServletContext)

Set the ServletContext that this object runs in.

Invoked after population of normal bean properties but before an init callback like InitializingBean's afterPropertiesSet or a custom init-method. Invoked after ApplicationContextAware's setApplicationContext. @param servletContext ServletContext object to be used by this object @see org.springframework.beans.factory.InitializingBean#afterPropertiesSet @see org.springframework.context.ApplicationContextAware#setApplicationContext