1 2 3 4 5 6
| The context may or may not yet be refreshed. If it (a) is an implementation of ConfigurableWebApplicationContext and (b) has not already been refreshed (the recommended approach), then the following will occur: If the given context has not already been assigned an id, one will be assigned to it ServletContext and ServletConfig objects will be delegated to the application context customizeContext will be called Any ApplicationContextInitializer org.springframework.context.ApplicationContextInitializer ApplicationContextInitializers specified through the "contextInitializerClasses" init-param will be applied. refresh() will be called
|