spring mvc源码学习笔记之九

在前面的文章中,我们简单讲了可以用 WebApplicationInitializer 接口去替换 web.xml
本文对这一块再做个详细讲解。
WebApplicationInitializer 这个接口的 javadoc 中有提到可以用继承 AbstractAnnotationConfigDispatcherServletInitializer 的方式替换实现 WebApplicationInitializer 接口。
先看代码,然后再具体解释。

  • pom.xml 的内容如下
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"><modelVersion>4.0.0</modelVersion><parent><groupId>com.qsm</groupId><artifactId>learn</artifactId><version>1.0.0</version></parent><groupId>com.qs</groupId><artifactId>demo-47</artifactId><properties><maven.compiler.source>8</maven.compiler.source><maven.compiler.target>8</maven.compiler.target><project.build.sourceEncoding>UTF-8</project.build.sourceEncoding></properties><dependencies><dependency><groupId>org.springframework</groupId><artifactId>spring-webmvc</artifactId><version>5.3.28</version></dependency><dependency><groupId>javax.servlet</groupId><artifactId>javax.servlet-api</artifactId><version>4.0.1</version><scope>provided</scope></dependency></dependencies>
</project>
  • com.qs.demo.MyWebApplicationInitializer 的内容如下
package com.qs.demo;import com.qs.demo.config.RootApplicationContextConfig;
import com.qs.demo.config.WebApplicationContextConfig;import org.springframework.web.servlet.support.AbstractAnnotationConfigDispatcherServletInitializer;/*** @author qs* @date 2023/07/20*/
public class MyWebApplicationInitializerextends AbstractAnnotationConfigDispatcherServletInitializer {@Overrideprotected Class<?>[] getRootConfigClasses() {return new Class[] {RootApplicationContextConfig.class};}@Overrideprotected Class<?>[] getServletConfigClasses() {return new Class[] {WebApplicationContextConfig.class};}@Overrideprotected String[] getServletMappings() {return new String[] {"/"};}
}
  • com.qs.demo.config.RootApplicationContextConfig 的内容如下
package com.qs.demo.config;import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;/*** @author qs* @date 2023/07/20*/
@Configuration
@ComponentScan(basePackages = {"com.qs.demo.service", "com.qs.demo.dao"})
public class RootApplicationContextConfig {}
  • com.qs.demo.config.WebApplicationContextConfig 的内容如下
package com.qs.demo.config;import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;/*** @author qs* @date 2023/07/20*/
@Configuration
@ComponentScan(basePackages = {"com.qs.demo.controller"})
public class WebApplicationContextConfig {}
  • com.qs.demo.controller.PeopleController 的内容如下
package com.qs.demo.controller;import com.qs.demo.service.PeopleService;import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;/*** @author qs* @date 2023/07/20*/
@RequestMapping("/people")
@RestController
public class PeopleController {private final PeopleService peopleService;public PeopleController(PeopleService peopleService) {this.peopleService = peopleService;}@GetMapping("/01")public String a() {return peopleService.a();}
}
  • com.qs.demo.service.PeopleService 的内容如下
package com.qs.demo.service;import com.qs.demo.dao.PeopleDao;import org.springframework.stereotype.Service;/*** @author qs* @date 2023/07/20*/
@Service
public class PeopleService {private final PeopleDao peopleDao;public PeopleService(PeopleDao peopleDao) {this.peopleDao = peopleDao;}public String a() {return peopleDao.a();}
}
  • com.qs.demo.dao.PeopleDao 的内容如下
package com.qs.demo.dao;import org.springframework.stereotype.Repository;import java.util.UUID;/*** @author qs* @date 2023/07/20*/
@Repository
public class PeopleDao {public String a() {return UUID.randomUUID().toString();}}

以上就是全部代码

接下来重点分析下 AbstractAnnotationConfigDispatcherServletInitializer 这个类,源代码不多,如下

/** Copyright 2002-2018 the original author or authors.** Licensed under the Apache License, Version 2.0 (the "License");* you may not use this file except in compliance with the License.* You may obtain a copy of the License at**      https://www.apache.org/licenses/LICENSE-2.0** Unless required by applicable law or agreed to in writing, software* distributed under the License is distributed on an "AS IS" BASIS,* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.* See the License for the specific language governing permissions and* limitations under the License.*/package org.springframework.web.servlet.support;import org.springframework.lang.Nullable;
import org.springframework.util.ObjectUtils;
import org.springframework.web.context.WebApplicationContext;
import org.springframework.web.context.support.AnnotationConfigWebApplicationContext;/*** 下面这句话意思是:这个类是一个 WebApplicationInitializer(这个抽象类实现了 WebApplicationInitializer 接口)。* 它用于注册 DispatcherServlet 。* 并且,它使用 Java-based 的 spring 配置,也就是基于注解的配置方式。** {@link org.springframework.web.WebApplicationInitializer WebApplicationInitializer}* to register a {@code DispatcherServlet} and use Java-based Spring configuration.** 这个类的实现者需要重写 getRootConfigClasses 这个抽象方法。用于指定 root 应用上下文的配置类。* 并且这个括号里边也备注了,所谓的 root 应用上下文,应该是非 web 相关的。啥意思呢,粗暴理解,就是 service | dao 这些东西放到 root 应用上下文。** 这个类的实现者需要重写 getServletConfigClasses 这个抽象方法。用于指定 DispatcherServlet 的应用上下文的配置类。* 在这个配置类中配置的是跟 spring mvc 相关的配置信息。** 对比这2个方法。我们可以看出。父子容器设定的一个出发点就是将web相关的东西和非web相关的东西隔离开。** <p>Implementations are required to implement:* <ul>* <li>{@link #getRootConfigClasses()} -- for "root" application context (non-web* infrastructure) configuration.* <li>{@link #getServletConfigClasses()} -- for {@code DispatcherServlet}* application context (Spring MVC infrastructure) configuration.* </ul>** 下面这段话意思是,如果不需要父子容器的话,可以将所有配置写到 getRootConfigClasses 指定的配置类中,* 让 getServletConfigClasses 返回 null。** <p>If an application context hierarchy is not required, applications may* return all configuration via {@link #getRootConfigClasses()} and return* {@code null} from {@link #getServletConfigClasses()}.** @author Arjen Poutsma* @author Chris Beams* @since 3.2*/
public abstract class AbstractAnnotationConfigDispatcherServletInitializerextends AbstractDispatcherServletInitializer {/*** {@inheritDoc}* <p>This implementation creates an {@link AnnotationConfigWebApplicationContext},* providing it the annotated classes returned by {@link #getRootConfigClasses()}.* Returns {@code null} if {@link #getRootConfigClasses()} returns {@code null}.*/@Override@Nullableprotected WebApplicationContext createRootApplicationContext() {System.out.println("所谓创建根web应用上下文就是 new AnnotationConfigWebApplicationContext() ");Class<?>[] configClasses = getRootConfigClasses();if (!ObjectUtils.isEmpty(configClasses)) {AnnotationConfigWebApplicationContext context = new AnnotationConfigWebApplicationContext();context.register(configClasses);return context;}else {return null;}}/*** {@inheritDoc}* <p>This implementation creates an {@link AnnotationConfigWebApplicationContext},* providing it the annotated classes returned by {@link #getServletConfigClasses()}.*/@Overrideprotected WebApplicationContext createServletApplicationContext() {System.out.println("createServletApplicationContext ----> new AnnotationConfigWebApplicationContext() ");AnnotationConfigWebApplicationContext context = new AnnotationConfigWebApplicationContext();Class<?>[] configClasses = getServletConfigClasses();if (!ObjectUtils.isEmpty(configClasses)) {context.register(configClasses);}return context;}/*** Specify {@code @Configuration} and/or {@code @Component} classes for the* {@linkplain #createRootApplicationContext() root application context}.* @return the configuration for the root application context, or {@code null}* if creation and registration of a root context is not desired*/@Nullableprotected abstract Class<?>[] getRootConfigClasses();/*** Specify {@code @Configuration} and/or {@code @Component} classes for the* {@linkplain #createServletApplicationContext() Servlet application context}.* @return the configuration for the Servlet application context, or* {@code null} if all configuration is specified through root config classes.*/@Nullableprotected abstract Class<?>[] getServletConfigClasses();}

最后,AbstractAnnotationConfigDispatcherServletInitializer 这个抽象类的父类 AbstractDispatcherServletInitializer以及祖父 AbstractContextLoaderInitializer 都值得看看。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/pingmian/66601.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【HTML+CSS+JS+VUE】web前端教程-2-HTML5介绍和基础骨架

HTML5介绍 HTML5是用来描述网页的一种语言,被称为超文本标记语言用HTML5编写的文件,后缀以.html结尾HTML是一种标记语言标记语言是一套标记标签标签是由尖括号包围的关键字,例如:标签有两种表现形式: 双标签,例如:<html></html> 单标签,例如:<img>HTML…

单例模式-如何保证全局唯一性?

以下是几种实现单例模式并保证全局唯一性的方法&#xff1a; 1. 饿汉式单例模式 class Singleton { private:// 私有构造函数&#xff0c;防止外部创建对象Singleton() {}// 静态成员变量&#xff0c;存储单例对象static Singleton instance; public:// 公有静态成员函数&…

Oracle OCP考试常见问题之线上考试流程

首先要注意的是&#xff1a;虽然Oracle官方在国际上取消了获得OCP认证需要培训记录的要求&#xff0c;但在中国区&#xff0c;考生仍然需要参加Oracle的官方或者其合作伙伴组织的培训&#xff0c;并且由Oracle授权培训中心向Oracle提交学员培训记录。考生只有在完成培训并通过考…

基于海思soc的智能产品开发(camera sensor的两种接口)

【 声明&#xff1a;版权所有&#xff0c;欢迎转载&#xff0c;请勿用于商业用途。 联系信箱&#xff1a;feixiaoxing 163.com】 对于嵌入式开发设备来说&#xff0c;除了图像显示&#xff0c;图像输入也是很重要的一部分。说到图像输入&#xff0c;就不得不提到camera。目前ca…

Go语言之十条命令(The Ten Commands of Go Language)

Go语言之十条命令 Go语言简介 Go语言&#xff08;又称Golang&#xff09;‌是由Google开发的一种开源编程语言&#xff0c;首次公开发布于2009年。Go语言旨在提供简洁、高效、可靠的软件开发解决方案&#xff0c;特别强调并发编程和系统编程‌。 Go语言的基本特征 ‌静态强类…

Redis 笔记(二)-Redis 安装及测试

一、什么是 Redis 中文网站 Redis&#xff08;Remote Dictionary Server )&#xff0c;即远程字典服务&#xff0c;是一个开源的使用 ANSI C语言编写、支持网络、可基于内存亦可持久化的日志型、Key-Value&#xff0c;并提供多种语言的 API。 Redis 开源&#xff0c;遵循 BSD 基…

在 PhpStorm 中配置命令行直接运行 PHP 的步骤

在 PhpStorm 中配置命令行直接运行 PHP 的步骤如下&#xff1a; ### 1. 安装 PHP 并配置环境变量 确保你已经在系统上安装了 PHP&#xff0c;并且将 PHP 的可执行文件路径添加到系统的环境变量中。这样你可以在命令行中直接使用 php 命令。 ### 2. 配置 PhpStorm 的 PHP 解释…

H2数据库在单元测试中的应用

H2数据库特征 用比较简洁的话来介绍h2数据库&#xff0c;就是一款轻量级的内存数据库&#xff0c;支持标准的SQL语法和JDBC API&#xff0c;工业领域中&#xff0c;一般会使用h2来进行单元测试。 这里贴一下h2数据库的主要特征 Very fast database engineOpen sourceWritten…

数据库中锁与ETL的故障排除和性能优化

锁的类型 共享锁&#xff08;Shared Lock&#xff0c;S锁&#xff09;&#xff1a;又称读锁&#xff0c;允许事务对数据进行读取操作&#xff0c;多个事务可同时获取同一资源的共享锁&#xff0c;不会互相阻塞&#xff0c;用于并发读操作。排他锁&#xff08;Exclusive Lock&a…

【设计模式】装饰器与代理模式的对比

文章目录 装饰器模式&#xff08;Decorator Pattern&#xff09;代理模式&#xff08;Proxy Pattern&#xff09;两者之间的区别 装饰器模式&#xff08;Decorator Pattern&#xff09; 装饰器模式是一种结构型设计模式&#xff0c;它允许你动态地将责任附加到对象上&#xff…

通俗易懂之线性回归时序预测PyTorch实践

线性回归&#xff08;Linear Regression&#xff09;是机器学习中最基本且广泛应用的算法之一。它不仅作为入门学习的经典案例&#xff0c;也是许多复杂模型的基础。本文将全面介绍线性回归的原理、应用&#xff0c;并通过一段PyTorch代码进行实践演示&#xff0c;帮助读者深入…

安全基础-互联网技术基础

互联网技术基础 概述&#xff1a;计算机网络、网络协议、HTTP协议、前端与后端技术、Web服务器、数据库以及浏览器等 目录 互联网技术基础前言一、计算机网络定义二、网络协议和协议分层1.OSI七层模型2.TCP/IP四层模型 三、HTTP协议1、HTTP协议的特点2、HTTP请求3、HTTP响应4、…

MATLAB深度学习实战文字识别

文章目录 前言视频演示效果1.DB文字定位环境配置安装教程与资源说明1.1 DB概述1.2 DB算法原理1.2.1 整体框架1.2.2 特征提取网络Resnet1.2.3 自适应阈值1.2.4 文字区域标注生成1.2.5 DB文字定位模型训练 2.CRNN文字识别2.1 CRNN概述2.2 CRNN原理2.2.1 CRNN网络架构实现2.2.2 CN…

和为0的四元组-蛮力枚举(C语言实现)

目录 一、问题描述 二、蛮力枚举思路 1.初始化&#xff1a; 2.遍历所有可能的四元组&#xff1a; 3.检查和&#xff1a; 4.避免重复&#xff1a; 5.更新计数器&#xff1a; 三、代码实现 四、运行结果 五、 算法复杂度分析 一、问题描述 给定一个整数数组 nums&…

SpringBoot日常:集成Kafka

文章目录 1、pom.xml文件2、application.yml3、生产者配置类4、消费者配置类5、消息订阅6、生产者发送消息7、测试发送消息 本章内容主要介绍如何在springboot项目对kafka进行整合&#xff0c;最终能达到的效果就是能够在项目中通过配置相关的kafka配置&#xff0c;就能进行消息…

【实用技能】如何使用 .NET C# 中的 Azure Key Vault 中的 PFX 证书对 PDF 文档进行签名

TX Text Control 是一款功能类似于 MS Word 的文字处理控件&#xff0c;包括文档创建、编辑、打印、邮件合并、格式转换、拆分合并、导入导出、批量生成等功能。广泛应用于企业文档管理&#xff0c;网站内容发布&#xff0c;电子病历中病案模板创建、病历书写、修改历史、连续打…

33.3K 的Freqtrade:开启加密货币自动化交易之旅

“ 如何更高效、智能地进行交易成为众多投资者关注的焦点。” Freqtrade 是一款用 Python 编写的免费开源加密货币交易机器人。它就像一位不知疲倦的智能交易助手&#xff0c;能够连接到众多主流加密货币交易所&#xff0c;如 Binance、Bitmart、Bybit 等&#xff08;支…

依赖注入学习

1.介绍 依赖注入&#xff08;Dependency Injection, DI&#xff09;是一种软件设计模式&#xff0c;用于实现类与其依赖项之间的解耦。它的核心思想是&#xff0c;将类所依赖的对象通过外部注入的方式传递给它&#xff0c;而不是在类内部自行创建依赖对象。通过这种方式&#…

Mac M2基于MySQL 8.4.3搭建(伪)主从集群

前置准备工作 安装MySQL 8.4.3 参考博主之前的文档&#xff0c;在本地Mac安装好MySQL&#xff1a;Mac M2 Pro安装MySQL 8.4.3安装目录&#xff1a;/usr/local/mysql&#xff0c;安装好的MySQL都处于运行状态&#xff0c;需要先停止MySQL服务最快的方式&#xff1a;系统设置 …

Ubuntu平台虚拟机软件学习笔记

Ubuntu平台上常见虚拟机软件 VirtualBox [Download]KVM/QEMU 1. VirtualBox 1.1 查看安装版本 VBoxManage -V2. KVM/QEMU KVM: Kernel-based Virtual Machine QEMU: Quick EMUlator 通义千问&#xff1a; virt-manager 既不是QEMU也不是KVM&#xff0c;而是用于管理和创建…