Jetty/Spring初始化: web
jetty啓動時註冊一個QueuedThreadPool和一些connector和monitor,並初始化一個WebAppContext/ServletContextHandler,同時註冊一個LifeCycleListener LifeCycleListener監聽jetty生命週期事件 ServletContextHandler初始化時,註冊一個兩個重要對象 springcontextlistener ContextLoaderListener springservlet DispatcherServlet ContextLoaderListener載入spring組件 DispatcherServlet用spring組件處理全部url請求
Jetty/Spring api:spring
private void startJetty(int port) throws Exception { Server server = new Server(port); WebApplicationContext springContext = getContext(); DispatcherServlet springServlet = new DispatcherServlet(springContext); ContextLoaderListener springListener = new ContextLoaderListener(springContext); ServletContextHandler context = getServletContextHandler(springServlet, springContextLoader); server.setHandler(context); server.start(); server.join(); } private static ServletContextHandler getServletContextHandler(DispatcherServlet springServlet, ContextLoaderListener springListener) throws IOException { ServletContextHandler contextHandler = new ServletContextHandler(); contextHandler.setErrorHandler(null); contextHandler.setContextPath(CONTEXT_PATH); contextHandler.addServlet(new ServletHolder(springServlet), MAPPING_URL); contextHandler.addEventListener(springListener); contextHandler.setResourceBase(new ClassPathResource("webapp").getURI().toString()); return contextHandler; } private static WebApplicationContext getContext() { AnnotationConfigWebApplicationContext context = new AnnotationConfigWebApplicationContext(); context.setConfigLocation(CONFIG_LOCATION); context.getEnvironment().setDefaultProfiles(DEFAULT_PROFILE); return context; }
Bean生命週期之初始化:
1.容器尋找Bean的定義信息而且將其實例化。
2.容器對Bean進行依賴注入,Spring按照Bean定義信息配置Bean的全部屬性。
3.若是Bean實現了BeanNameAware接口,工廠調用Bean的setBeanName()方法傳遞Bean的id。
4.若是Bean實現了BeanFactoryAware接口,工廠調用setBeanFactory()方法傳入工廠自身。
5.若是BeanPostProcessor和Bean關聯,那麼BeanPostProcessor的postProcessBeforeInitialzation()方法將被調用。
6.若是Bean指定了init-method方法,它將被調用。
7.若是BeanPostProcessor和Bean關聯,那麼BeanPostProcessor的postProcessAfterInitialization()方法將被調用。api
Bean生命週期之運行: Bean被應用系統使用了,而且將被保留在Bean Factory中直到它再也不須要。app
Bean生命週期之銷燬:
1.若是Bean實現了DisposableBean接口,destory()方法被調用。
2.若是指定了定製的銷燬方法,調用這個方法。webapp
Bean生命週期之主要回調:
Bean初始化回調(bean注入後的行爲)
註解@PostConstruct->接口InitializingBean.afterPropertiesSet()->XML方法init-method
Bean銷燬回調(bean銷燬以前的行爲 )
註解@PreDestroy->接口DisposableBean.destroy()->XML方法destroy-methodide
BeanFactory生命週期之主要回調:
Bean初始化回調(bean注入後的行爲)
接口BeanFactoryPostProcessor.postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory)post
SpringContext生命週期容器之主要回調:
Bean初始化回調(bean注入後的行爲)
接口BeanPostProcessor.postProcessBeforeInitialization(Object o, String s)
接口BeanPostProcessor.postProcessAfterInitialization(Object o, String s)url
PropertyPlaceholderConfigurerspa
<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <property name="locations" value="classpath:xxx/jdbc.properties"/> </bean>
PropertyOverrideConfigurer code
<context:property-override location="classpath:override.properties"/>
重要接口類
LifeCycleListener: jetty生命週期事件監聽器 WebApplicationInitializer/SpringBootServletInitializer: 自定義servlet FilterRegistrationBean+Filter: 自定義filter ApplicationListener: spring生命週期事件監聽器 CommandLineRunner: jetty徹底啓動後(spring徹底啓動前)執行 ApplicationRunner