码迷,mamicode.com
首页 > 编程语言 > 详细

springmvc DispatcherServlet初始化..信息..

时间:2015-07-15 23:08:07      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:spingmvc

DispatcherServlet.class

	protected void initStrategies(ApplicationContext context) {
		initMultipartResolver(context);
		initLocaleResolver(context);
		initThemeResolver(context);
		initHandlerMappings(context);
		initHandlerAdapters(context);
		initHandlerExceptionResolvers(context);
		initRequestToViewNameTranslator(context);
		initViewResolvers(context);
		initFlashMapManager(context);
	}
protected void onRefresh(ApplicationContext context) {
		initStrategies(context);
	}
FrameworkServlet.class

	public void onApplicationEvent(ContextRefreshedEvent event) {
		refreshEventReceived = true;
		onRefresh(event.getApplicationContext());
	}

	protected void onRefresh(ApplicationContext applicationcontext) {
	}
	
		private class ContextRefreshListener implements ApplicationListener {

		public void onApplicationEvent(ContextRefreshedEvent event) {
			FrameworkServlet.this.onApplicationEvent(event);
		}

		public volatile void onApplicationEvent(
				ApplicationEvent applicationevent) {
			onApplicationEvent((ContextRefreshedEvent) applicationevent);
		}

		final FrameworkServlet this$0;

		private ContextRefreshListener() {
			this$0 = FrameworkServlet.this;
			super();
		}

		ContextRefreshListener(ContextRefreshListener contextrefreshlistener) {
			this();
		}
	}


监听初始化的时候初始化  

DispatcherServlet

 handlerMaping handlerAdapter 等容器。

springmvc DispatcherServlet初始化..信息..

标签:spingmvc

原文地址:http://yjm199.blog.51cto.com/4408395/1675006

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!