| edu.iu.uis.eden.messaging.servlet.KSBDispatcherServlet
KSBDispatcherServlet | public class KSBDispatcherServlet extends DispatcherServlet (Code) | | A
DispatcherServlet which dispatches incoming requests to the appropriate
service endpoint.
author: Kuali Rice Team (kuali-rice@googlegroups.com) |
getHandler | protected HandlerExecutionChain getHandler(HttpServletRequest request, boolean cache) throws Exception(Code) | | Return the HandlerExecutionChain for this request.
Try all handler mappings in order.
Parameters: request - current HTTP request Parameters: cache - whether to cache the HandlerExecutionChain in a request attribute the HandlerExceutionChain, or null if no handler could be found |
initWebApplicationContext | protected WebApplicationContext initWebApplicationContext() throws BeansException(Code) | | Instantiate the WebApplicationContext for this servlet, either a default
XmlWebApplicationContext or a custom context class if set. This implementation
expects custom contexts to implement ConfigurableWebApplicationContext.
Can be overridden in subclasses.
Parameters: parent - the parent ApplicationContext to use, or null if none the WebApplicationContext for this servlet throws: BeansException - if the context couldn't be initialized See Also: KSBDispatcherServlet.setContextClass See Also: org.springframework.web.context.support.XmlWebApplicationContext |
|
|