Update 26.3.2. The EmbeddedWebApplicationContext.md

master
qibaoguang 2015-02-10 23:52:02 +08:00
parent 50c3d95349
commit 581ca6b7b4
1 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,5 @@
### 26.3.2. EmbeddedWebApplicationContext
Spring Boot底层使用了一个新的ApplicationContext类型用于对内嵌servlet容器的支持。EmbeddedWebApplicationContext是一个特殊类型的WebApplicationContext它通过搜索一个单一的EmbeddedServletContainerFactory bean来启动自己。通常TomcatEmbeddedServletContainerFactoryJettyEmbeddedServletContainerFactory或UndertowEmbeddedServletContainerFactory将被自动配置。
**注**你通常不需要知道这些实现类。大多数应用将被自动配置并根据你的行为创建合适的ApplicationContext和EmbeddedServletContainerFactory。