Spring WebAppInitializer
Posted develon
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring WebAppInitializer相关的知识,希望对你有一定的参考价值。
Spring WebAppInitializer 的原理与用例
使用 Spring 框架的时候, 通常是需要在 web.xml 中配置的, 比如配置 DispatcherServlet, 是通过对 URL 做映射实现的
<servlet>
<servlet-name>dispatcher</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>dispatcher</servlet-name>
<url-pattern>*.</url-pattern>
</servlet-mapping>
然后在 $ servlet-name -servlet.xml 中定义扫描 Controller 组件的包
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd">
<context:component-scan base-package="package.controller, another.package"/>
<!-- ... -->
</beans>
这不免有些繁琐, 有没有更简单的方式呢? 有!, spring-webmvc 中提供了抽象类 AbstractAnnotationConfigDispatcherServletInitializer, 继承并实现它, 容器会自动实例化它!
以上是关于Spring WebAppInitializer的主要内容,如果未能解决你的问题,请参考以下文章
Spring全家桶笔记:Spring+Spring Boot+Spring Cloud+Spring MVC
学习笔记——Spring简介;Spring搭建步骤;Spring的特性;Spring中getBean三种方式;Spring中的标签
Spring框架--Spring事务管理和Spring事务传播行为