当前页面:
在线文档首页 >
Spring Framework 2.0.5 API 文档英文版
StaticPortletApplicationContext (Spring Framework API 2.0) - Spring Framework 2.0.5 API 文档英文版
org.springframework.web.portlet.context
Class StaticPortletApplicationContext
java.lang.Object
org.springframework.core.io.DefaultResourceLoader
org.springframework.context.support.AbstractApplicationContext
org.springframework.context.support.GenericApplicationContext
org.springframework.context.support.StaticApplicationContext
org.springframework.web.portlet.context.StaticPortletApplicationContext
- All Implemented Interfaces:
- BeanFactory, DisposableBean, HierarchicalBeanFactory, ListableBeanFactory, BeanDefinitionRegistry, ApplicationContext, ApplicationEventPublisher, ConfigurableApplicationContext, Lifecycle, MessageSource, ResourceLoader, ResourcePatternResolver, WebApplicationContext, ConfigurablePortletApplicationContext
public class StaticPortletApplicationContext
- extends StaticApplicationContext
- implements ConfigurablePortletApplicationContext
Static Portlet-based ApplicationContext implementation for testing.
Not intended for use in production applications.
Implements the
ConfigurablePortletApplicationContext
interface to allow for direct replacement of an XmlPortletApplicationContext
,
despite not actually supporting external configuration files.
Interprets resource paths as portlet context resources, that is, as paths
beneath the portlet application root. Absolute paths, for example for files
outside the portlet app root, can be accessed via "file:" URLs, as implemented
by DefaultResourceLoader
.
- Since:
- 2.0
- Author:
- Rod Johnson, Juergen Hoeller, Mark Fisher
Methods inherited from class org.springframework.context.support.AbstractApplicationContext |
addApplicationListener, addBeanFactoryPostProcessor, addListener, close, containsBean, containsBeanDefinition, containsLocalBean, destroy, destroyBeans, doClose, getAliases, getApplicationListeners, getAutowireCapableBeanFactory, getBean, getBean, getBeanDefinitionCount, getBeanDefinitionNames, getBeanFactoryPostProcessors, getBeanNamesForType, getBeanNamesForType, getBeansOfType, getBeansOfType, getDisplayName, getInternalParentBeanFactory, getInternalParentMessageSource, getLifecycleBeans, getMessage, getMessage, getMessage, getParent, getParentBeanFactory, getStartupDate, getType, initApplicationEventMulticaster, initMessageSource, invokeBeanFactoryPostProcessors, isActive, isPrototype, isRunning, isSingleton, isTypeMatch, obtainFreshBeanFactory, onClose, onRefresh, prepareBeanFactory, prepareRefresh, publishEvent, refresh, registerBeanPostProcessors, registerListeners, registerShutdownHook, setDisplayName, start, stop, toString |
StaticPortletApplicationContext
public StaticPortletApplicationContext()
setParent
public void setParent(ApplicationContext parent)
- Description copied from class:
GenericApplicationContext
- Set the parent of this application context, also setting
the parent of the internal BeanFactory accordingly.
- Specified by:
setParent
in interface ConfigurableApplicationContext
- Overrides:
setParent
in class GenericApplicationContext
- Parameters:
parent
- the parent context- See Also:
ConfigurableBeanFactory.setParentBeanFactory(org.springframework.beans.factory.BeanFactory)
getServletContext
public ServletContext getServletContext()
- Description copied from interface:
WebApplicationContext
- Return the standard Servlet API ServletContext for this application.
- Specified by:
getServletContext
in interface WebApplicationContext
setPortletContext
public void setPortletContext(PortletContext portletContext)
- Description copied from interface:
ConfigurablePortletApplicationContext
- Set the PortletContext for this portlet application context.
Does not cause an initialization of the context: refresh needs to be
called after the setting of all configuration properties.
- Specified by:
setPortletContext
in interface ConfigurablePortletApplicationContext
- See Also:
ConfigurableApplicationContext.refresh()
getPortletContext
public PortletContext getPortletContext()
- Description copied from interface:
ConfigurablePortletApplicationContext
- Return the standard Portlet API PortletContext for this application.
- Specified by:
getPortletContext
in interface ConfigurablePortletApplicationContext
setPortletConfig
public void setPortletConfig(PortletConfig portletConfig)
- Description copied from interface:
ConfigurablePortletApplicationContext
- Set the PortletConfig for this portlet application context.
- Specified by:
setPortletConfig
in interface ConfigurablePortletApplicationContext
- See Also:
ConfigurableApplicationContext.refresh()
getPortletConfig
public PortletConfig getPortletConfig()
- Description copied from interface:
ConfigurablePortletApplicationContext
- Return the PortletConfig for this portlet application context, if any.
- Specified by:
getPortletConfig
in interface ConfigurablePortletApplicationContext
setNamespace
public void setNamespace(String namespace)
- Description copied from interface:
ConfigurablePortletApplicationContext
- Set the namespace for this portlet application context,
to be used for building a default context config location.
- Specified by:
setNamespace
in interface ConfigurablePortletApplicationContext
getNamespace
public String getNamespace()
- Description copied from interface:
ConfigurablePortletApplicationContext
- Return the namespace for this web application context, if any.
- Specified by:
getNamespace
in interface ConfigurablePortletApplicationContext
setConfigLocations
public void setConfigLocations(String[] configLocations)
- Description copied from interface:
ConfigurablePortletApplicationContext
- Set the config locations for this portlet application context.
If not set, the implementation is supposed to use a default for the
given namespace.
- Specified by:
setConfigLocations
in interface ConfigurablePortletApplicationContext
getConfigLocations
public String[] getConfigLocations()
- Description copied from interface:
ConfigurablePortletApplicationContext
- Return the config locations for this web application context,
or
null
if none specified.
- Specified by:
getConfigLocations
in interface ConfigurablePortletApplicationContext
postProcessBeanFactory
protected void postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory)
- Register request/session scopes, a
PortletContextAwareProcessor
, etc.
- Overrides:
postProcessBeanFactory
in class AbstractApplicationContext
- Parameters:
beanFactory
- the bean factory used by the application context
getResourceByPath
protected Resource getResourceByPath(String path)
- This implementation supports file paths beneath the root of the PortletContext.
- Overrides:
getResourceByPath
in class DefaultResourceLoader
- Parameters:
path
- path to the resource
- Returns:
- Resource handle
- See Also:
PortletContextResource
getResourcePatternResolver
protected ResourcePatternResolver getResourcePatternResolver()
- This implementation supports pattern matching in unexpanded WARs too.
- Overrides:
getResourcePatternResolver
in class AbstractApplicationContext
- Returns:
- the ResourcePatternResolver for this context
- See Also:
PortletContextResourcePatternResolver
Copyright © 2002-2007 The Spring Framework.