Hi Mark,
AbstractWebApplicationContext: based on Spring framework 1.2 interface
org.springframework.web.context.WebApplicationContext:
"Central interface to provide configuration for an application. This
is read-only while the application is running, but may be reloaded if
the implementation supports this."
BaseApplicationListener: based on Spring framework 1.2 interface
org.springframework.context.ApplicationListener:
"Interface to be implemented by application event listeners. Based on
standard java.util base interface for Observer design pattern."
BaseHandlerInterceptor: based on Spring framework 1.2 interface
org.springframework.web.servlet.HandlerInterceptor:
"Intercept the execution of a handler. Called after HandlerMapping
determined an appropriate handler object, but before HandlerAdapter
invokes the handler."
base class, must be subclassed
BaseHandlerMapping: based on Spring framework 1.2 interface
org.springframework.web.servlet.HandlerMapping
"Base class must be implemented by objects that define a mapping
between requests and handler objects."
Intended to provide a HandlerExecutionChain for a request.
ContextLoader: based on Spring framework 1.2
org.springframework.web.context.ContextLoader:
"Performs the actual initialization work for the root application
context."
Use the ContextLoader to create an instance of the
DefaultWebApplicationContext (which wraps the beanFactory) during
application initialization or refresh.
DefaultWebApplicationContext: extends AbstractWebApplicationContext
Includes methods from interfaces: ApplicationContext,
HierarchicalBeanFactory, ApplicationEventPublisher,
ConfigurableApplicationContext, ConfigurableWebApplicationContext
Intended to provide support for broadcast style front end controllers
HandlerExecutionChain: based on Spring framework 1.2
org.springframework.web.servlet.HandlerExecutionChain
"Handler execution chain, consisting of handler object and any
preprocessing interceptors. Returned by HandlerMapping's getHandler
method."
SimpleApplicationEventMulticaster: based on Spring framework 1.2
org.springframework.context.event.SimpleApplicationEventMulticaster:
"Simple implementation of the ApplicationEventMulticaster interface."
The first comment in each of the components may contain additional
documentation.
Is that sufficient?
-m
> E:
mark.man...@gmail.com