servlet、filter、listener三大组件。
由于SpringBoot是以jar包的方式启动嵌入式的Servlet容器来启动SpringBoot的web应用。
没有web.xml,所以要使用注解来添加组件,分为两步:1.自定义组件
2.通过RegistrationBean注册
↑SpringBoot就是通过这种方式向IOC中注册的dispatchServlet
备注:通过RegistrationBean的set、get、add方法,可以对三大组件进行配置,如filter的拦截路径、servlet的映射路径等等属性。
Servlet
filter
listener