当前位置:网站首页>AbstractDispatcherServletInitializer 的实现类为什么可以在初始化Web容器的时候被调用
AbstractDispatcherServletInitializer 的实现类为什么可以在初始化Web容器的时候被调用
2022-07-04 12:33:00 【Nishkata】
引入
在学习 Spring MVC 引入 Java Web项目的时候,发现除了使用 web.xml 注册 DispatcherServlet 的方式,还可以使用配置类继承 AbstractDispatcherServletInitializer 的方式进行 DispatcherServlet 这个前端控制器的注册。于是好奇我们写的 DispatcherServletInitializer 配置类怎么能被 Web 容器识别并加载。
解析
DispatcherServletInitializer 配置类能够被加载的核心是 Java 的 SPI 服务发现机制。
SPI 服务发现机制
- 服务接口 的定义: 某一个框架定义了某种服务的 接口 ,我们在使用这个框架的时候可以使用不同的服务提供商提供的接口的实现。
- 注册 服务接口 的实现: 在 classpath:META-INF/services/目录下创建一个以 服务接口 全类名命名的文件,内容为实现类的全类名。
- 服务加载 定义了 服务接口 的框架在启动时会到 SPI 规范指定的 classpath:META-INF/services/目录下寻找并加载此框架所需服务。
Spring MVC 遵循 SPI 规范,作为Servlet容器的服务提供商向其注册服务
对应于SPI 服务发现机制的三点
- 服务接口 的定义 Servlet 规范定义了服务接口 javax-servlet-api-xxx.jar/javax.servlet.ServletContainerInitializer
- 注册 服务接口 的实现: Spring MVC 注册服务。在 spring-web-xxx.jar 包下 有 META-INF/services/javax.servlet.ServletContainerInitializer 文件,内容为 org.springframework.web.SpringServletContainerInitializer
- 服务加载 SpringServletContainerInitializer 中的 onStartup 方法会在 Servlet 容器初始化的时候通过 SPI 机制发现并调用,onStartup 方法里面又会 将所有 WebApplicationInitializer 的实现类的对象的 onStartup 方法全部调用一遍。文章开头所说的 AbstractDispatcherServletInitializer 也是 WebApplicationInitializer 接口的实现,所以其 onStartup 方法也会在 Servlet 容器初始化的时候被调用。
展望
关于 SpringServletContainerInitializer 如何加载 WebApplicationInitializer 还有待研究。
参考
Java编程技术之浅析SPI服务发现机制
附录
继承 AbstractDispatcherServletInitializer 方式引入 Spring MVC
public class DispatcherServletInitializer extends AbstractDispatcherServletInitializer {
@Override
protected WebApplicationContext createServletApplicationContext() {
AnnotationConfigWebApplicationContext applicationContext = new AnnotationConfigWebApplicationContext();
applicationContext.register(SpringMvcConfig.class);
return applicationContext;
}
@Override
protected String[] getServletMappings() {
// "/" 所有,但不包括.jsp/.html; "/*" 表示包括.jsp/.html 的所有
return new String[]{
"/"};
}
@Override
protected WebApplicationContext createRootApplicationContext() {
return null;
}
}
边栏推荐
- PKCs 5: password based cryptography specification version 2.1 Chinese Translation
- C fonctions linguistiques
- Global and Chinese markets of NOx analyzers 2022-2028: Research Report on technology, participants, trends, market size and share
- C語言:求100-999是7的倍數的回文數
- VIM, another program may be editing the same file If this is the solution of the case
- 01. Basics - MySQL overview
- Possible to restore a backup of SQL Server 2014 on SQL Server 2012?
- Global and Chinese market of piston rod 2022-2028: Research Report on technology, participants, trends, market size and share
- [Yunju entrepreneurial foundation notes] Chapter II entrepreneur test 10
- Recommend a cool geospatial data visualization tool with low code
猜你喜欢
记一次 Showing Recent Errors Only Command /bin/sh failed with exit code 1 问题
Lecture 9
How to realize the function of Sub Ledger of applet?
R语言--readr包读写数据
Hongke case study on storm impact in coastal areas of North Carolina using lidar
01. Basics - MySQL overview
13、 C window form technology and basic controls (3)
DVC use case (VI): Data Registry
[data clustering] section 3 of Chapter 4: DBSCAN performance analysis, advantages and disadvantages, and parameter selection methods
Method of setting default items in C # ComboBox control code
随机推荐
[Android reverse] function interception instance (③ refresh CPU cache | ④ process interception function | ⑤ return specific results)
Article download address
记一次 Showing Recent Errors Only Command /bin/sh failed with exit code 1 问题
[the way of programmer training] - 2 Perfect number calculation
[Yunju entrepreneurial foundation notes] Chapter II entrepreneur test 8
Review of week 278 of leetcode II
DVC use case (VI): Data Registry
It's hard to hear C language? Why don't you take a look at this (V) pointer
queue
Global and Chinese market of piston rod 2022-2028: Research Report on technology, participants, trends, market size and share
Entitas learning [iv] other common knowledge points
ASP. Net razor – introduction to VB loops and arrays
03_ Armv8 instruction set introduction load and store instructions
Tableau makes data summary after linking the database, and summary exceptions occasionally occur.
JD home programmers delete databases and run away. Talk about binlog, the killer of MySQL data backup
Kivy教程之 08 倒计时App实现timer调用(教程含源码)
C语言函数
ArgMiner:一个用于对论点挖掘数据集进行处理、增强、训练和推理的 PyTorch 的包
The most robust financial products in 2022
'using an alias column in the where clause in PostgreSQL' - using an alias column in the where clause in PostgreSQL