|
Generated by JDiff |
||||||||
PREV PACKAGE NEXT PACKAGE FRAMES NO FRAMES |
This file contains all the changes in documentation in the packageorg.springframework.web.context
as colored differences. Deletions are shownlike 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.
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)
Interface to be implemented by any object that wishes to beClass ServletConfigAware, void setServletConfig(ServletConfig)notifiednotified ofthethe 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 bethrown on bean creationset. @author Juergen Hoeller @author Chris Beams @since 2.0 @see ServletContextAware
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'ssetApplicationContext
. @param servletConfig ServletConfig object to be used by this object @see org.springframework.beans.factory.InitializingBean#afterPropertiesSet @see org.springframework.context.ApplicationContextAware#setApplicationContext
Interface to be implemented by any object that wishes to beClass ServletContextAware, void setServletContext(ServletContext)notifiednotified ofthethe ServletContext (typically determined by the WebApplicationContext) that it runs in. @author Juergen Hoeller @author Chris Beams @since 12.03.2004 @see ServletConfigAware
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'ssetApplicationContext
. @param servletContext ServletContext object to be used by this object @see org.springframework.beans.factory.InitializingBean#afterPropertiesSet @see org.springframework.context.ApplicationContextAware#setApplicationContext