parent
af0a529bb5
commit
c3bf658058
|
|
@ -445,6 +445,20 @@ public abstract class FrameworkServlet extends HttpServletBean
|
|||
return wac;
|
||||
}
|
||||
|
||||
/**
|
||||
* Instantiate the WebApplicationContext for this servlet, either a default
|
||||
* {@link org.springframework.web.context.support.XmlWebApplicationContext}
|
||||
* or a {@link #setContextClass custom context class}, if set.
|
||||
* Delegates to #createWebApplicationContext(ApplicationContext).
|
||||
* @param parent the parent WebApplicationContext to use, or <code>null</code> if none
|
||||
* @return the WebApplicationContext for this servlet
|
||||
* @see org.springframework.web.context.support.XmlWebApplicationContext
|
||||
* @see #createWebApplicationContext(ApplicationContext)
|
||||
*/
|
||||
protected WebApplicationContext createWebApplicationContext(WebApplicationContext parent) {
|
||||
return createWebApplicationContext((ApplicationContext) parent);
|
||||
}
|
||||
|
||||
/**
|
||||
* Post-process the given WebApplicationContext before it is refreshed
|
||||
* and activated as context for this servlet.
|
||||
|
|
|
|||
Loading…
Reference in New Issue