摘要: war包代表一个应用 web.xml是tomcat和spring间的桥梁,是tomcat构建spring运行环境的说明书 It is a web application deployment descriptor file, contains detail description about web 阅读全文
posted @ 2019-12-31 17:47 zzfx 阅读(251) 评论(0) 推荐(0) 编辑
摘要: 一个Context对应一个web应用,而一个web应用应该有一个web.xml 观察StandardContext的startInternal方法 startInternal() -> fireLifecycleEvent(Lifecycle.CONFIGURE_START_EVENT, null) 阅读全文
posted @ 2019-12-31 17:23 zzfx 阅读(507) 评论(0) 推荐(0) 编辑
摘要: 一、ServletContext Defines a set of methods that a servlet uses to communicate with its servlet container, for example, to get the MIME type of a file, 阅读全文
posted @ 2019-12-31 16:14 zzfx 阅读(502) 评论(0) 推荐(0) 编辑
摘要: 既然,ServletContext是由Servlet容器初始化的,那spring的ContextLoaderListener又做了什么初始化呢? 1、servlet容器启动,为应用创建一个“全局上下文环境”:ServletContext 2、容器调用web.xml中配置的contextLoaderL 阅读全文
posted @ 2019-12-31 15:52 zzfx 阅读(330) 评论(0) 推荐(0) 编辑
摘要: In the Web MVC framework, each DispatcherServlet has its own WebApplicationContext, which inherits all the beans already defined in the rootWebApplica 阅读全文
posted @ 2019-12-31 14:56 zzfx 阅读(623) 评论(0) 推荐(0) 编辑
摘要: Tomcat即是一个HTTP服务器,也是一个servlet容器 https://blog.csdn.net/jiaomingliang/article/details/47393141 阅读全文
posted @ 2019-12-31 11:02 zzfx 阅读(146) 评论(0) 推荐(0) 编辑