【SpringBoot】SpringBoot Starter 作用及原理

news/2024/11/9 9:49:48/

文章目录

  • 前言
  • 一、什么是 Starter
  • 二、Starter 的作用
  • 三、spring 整合组件
  • 四、spring-boot 整合组件
  • 五、Starter 原理

前言

有没有在入行后直接基于 SpringBoot 开发项目,没有 spring、servlet 开发经历的?

有没有用 SpringBoot 开发项目,但是第一次听说 Starter 或者听过却不知道是干嘛的?

有没有知道 Starter 是干嘛的,但不知其原理的?

有没有想了解 Starter 原理或想自己实现一个 Starter 提供别人使用的?

如果有以上情况的,希望通过本文可以帮助你了解 Starter 。

一、什么是 Starter

大家都知道基于 SpringBoot 开发项目可以简化 Spring 应用的搭建以及开发过程,提高程序员开发效率,这是由于其“约定大约配置”的策略及其自动装配的特点。

约定大约配置是指 SpringBoot 指定了特定的方式进行配置(application.properties/yam/yaml),开发人员不需要像在 Spring 框架开发时定义配置文件。

自动装配是指在使用某个组件或框架时需要引用其依赖、配置类、配置文件等工作时,SpringBoot 帮我们做了这些工作。

那跟 Starter 有关系吗?答案是:有! Starter 就是自动装配的具体实现,其就是一个 maven 项目,对某个组件的依赖、配置进行管理。通过导入 “Starter” 模块更容易使用这个组件。

二、Starter 的作用

我们通过对比 mybatis-spring 和 mybatis-spring-boot-starter 代码示例,了解 Starter 的作用。

三、spring 整合组件

先看下在 spring 项目中如何使用 mybatis 的。大概有以下几个步骤:

  1. 引入 spring、mybatis、jdbc 等相关依赖。
  2. 创建 mybatis-config.xml 配置文件。
    • 声明数据源 DataSource。
    • 声明 SqlSessionFactoryBean。
    • 声明 MapperScannerConfigurer。
    • 声明等等配置。
  3. 编写 xxxMapper.xml 及 xxMapper.java 文件。
  4. 业务编码调用。

相关依赖

<dependency><groupId>org.springframework</groupId><artifactId>spring-context</artifactId><version>5.2.5.RELEASE</version>
</dependency>
<dependency><groupId>org.mybatis</groupId><artifactId>mybatis</artifactId><version>3.5.1</version>
</dependency>
<dependency><groupId>org.mybatis</groupId><artifactId>mybatis-spring</artifactId><version>1.3.0</version>
</dependency>
<dependency><groupId>mysql</groupId><artifactId>mysql-connector-java</artifactId><version>5.1.9</version>
</dependency>
<dependency><groupId>xxx</groupId><artifactId>xxxx</artifactId><version>xxx</version>
</dependency>
...

mybatis-config.xml 配置文件

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE configurationPUBLIC "-//mybatis.org//DTD Config 3.0//EN""http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration><context:property-placeholder location="classpath:jdbc.properties"/><settings><setting name="logImpl" value="STDOUT_LOGGING"/></settings><mappers><package name="com.xxx.dao"/></mappers><bean id="myDataSource" class="com.alibaba.druid.pool.DruidDataSource" init-method="init" destroy-method="close"><property name="url" value="${jdbc.url}"/><property name="username" value="${jdbc.username}"/><property name="password" value="${jdbc.password}"/></bean><bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean"><property name="dataSource" ref="dataSource" /><property name="mapperLocations" value="classpath:xxxx/*.xml"/></bean><bean class="org.mybatis.spring.mapper.MapperScannerConfigurer"><property name="basePackage" value="com.xxx.dao"/></bean><bean class=".xxxxxx.xxx"><!-- 指定SqlSessionFactory对象的名称 --><property name="sqlSessionFactoryBeanName" value="factory"/><!-- 指定基本包,dao接口所在的包名 --><property name="basePackage" value="com.xxx.dao"/></bean><bean class=".xxxxxx.xxx">...</bean></configuration>

业务编码调用

@Autowired
private XxxDao xxxDao;xxxDao.insert(xx);

作为一个开发人员是否觉得很麻烦?答案一定是的,如果稍不留神少了哪个配置或依赖,那就排查问题吧。

四、spring-boot 整合组件

这时候我们如果用基于 SpringBoot 开发,那 mybatis-spring-boot-starter 就可以帮助我们做这些事。

那我们继续看下在 SpringBoot 项目中如何使用 Mybatis 的。大概有以下几个步骤:

  1. 引入 mybatis-spring-boot-starter 依赖。
  2. application.properties 文件中添加相关配置。
    3。 编写 xxxMapper.xml 及 xxMapper.java 文件。
  3. 业务编码调用。

引入 mybatis-spring-boot-starter 依赖

<dependency><groupId>org.mybatis.spring.boot</groupId><artifactId>mybatis-spring-boot-starter</artifactId><version>2.1.1</version>
</dependency>

application.properties 文件中添加相关配置。

 spring.datasource.username=x********spring.datasource.password=********spring.datasource.url=********spring.datasource.driver-class-name=********​mybatis.mapper-locations=classpath:mapper/*.xml

编写 xxxMapper.xml 及 xxMapper.java 文件

@Mapperpublic interface XXXMapper {List<XXX> list(xxx);}

业务编码调用

@Autowired
private XxxDao xxxDao;xxxDao.insert(xx);

通过以上的代码比较可以明显的感觉到利用 Starter 后,我们编写的代码更少了,特别是 1、2 步骤,这就是 Starter 的作用。 mybatis-spring-boot-starter 帮助我们做了以下几件事:

  1. 整合了组件相关的依赖,使我们直接引入 mybatis-spring-boot-starter 依赖即可,也避免了版本冲突问题。
  2. 自动发现存在的 DataSource,做到自动配置。
  3. 帮我们创建并注册SqlSessionFactory、SqlSessionTemplate等,减少了配置类、配置项。
  4. 自动扫描映射器(Mapper),注入到 Spring Bean 中。

五、Starter 原理

那 mybatis-spring-boot-starter 是如何做这些事的,我们扒开裤子看个究竟。

首先看 mybatis-spring-boot-starter 项目结构,其只有一个pom.xml文件,文件中已经帮我们引入相关依赖,跟上面 Spring 整合 Mybatis 的依赖是不是差不多。

在这里插入图片描述

其中有一个 mybatis-spring-boot-autoconfigure 依赖,我们看下其项目结构

在这里插入图片描述

其通过 SPI 机制引入了 MybatisAutoConfiguration 配置类,该类帮我们做了以下几件事:

  1. 发现存在的 DataSource 并注入配置。
    在这里插入图片描述

  2. 注册 SqlSessionFactory、SqlSessionTemplate 到 Spring 容器中。
    在这里插入图片描述

  3. 内部类 AutoConfiguredMapperScannerRegistrar 扫描存在 @Mapper 注解类转化为 BeanDefinition 并注册到 Spring 容器中。
    在这里插入图片描述


http://www.ppmy.cn/news/427952.html

相关文章

Java之面向对象

Java之面向对象 一切皆对象。 编译型语言&#xff1a;编译器会将我们编写的源码一次性地编译成计算机可识别的二进制文件&#xff0c;然后计算机直接执行。如c、c等。 解释型语言&#xff1a;在程序运行时&#xff0c;解释器会一行行读取我们的代码&#xff0c;然后实时地将这…

苹果新专利曝光:AirTags可以快速找到Apple Pencil

近日&#xff0c;据外媒报道&#xff0c;苹果一项新专利提出&#xff0c;苹果手写笔可以通过“声学谐振器”来帮助用户找出手写笔的位置。根据这项专利&#xff0c;苹果试图在手写笔的笔盖上加入一个被动元件&#xff0c;以响应特定的声波频率。iPhone、iPad或Apple Watch会发出…

在Windows中,开机自启动

在Windows中&#xff0c;你可以按照以下步骤设置程序的开机自启动&#xff1a; 1 使用快捷键 Win R 打开运行对话框。 2 输入 shell:startup 并点击 确定&#xff0c;这将打开当前用户的启动文件夹。 3在启动文件夹中创建一个程序的快捷方式。可以右键点击文件或程序&#…

搜狗拼音输入法 打不了中文

问题 window10 搜狗拼音输入法打不了中文 解决 无论怎么重装&#xff0c;修复都无效 其实是智能英文被打开了&#xff0c;关闭即可ctrlshifte

Ubuntu拼音打不了中文

前言&#xff1a;在最初安装ubuntu已经选择了中文&#xff0c;但后面拼音输出不了。 点击右上角图标&#xff1a; 点击区域与语言、点击号&#xff1a; 汉语&#xff08;中国&#xff09;->汉语&#xff08;Pinyin&#xff09;->添加&#xff0c;如下所示即可&#xff1…

汉字无法进入计算机,电脑不能打汉字怎么办

有时候在打字聊天的时候突然发现&#xff0c;电脑的输入法出现了问题&#xff0c;无法输入文字了&#xff0c;怎么办。下面学习啦小编给大家讲解一下关于电脑不能打汉字的解决方法&#xff0c;希望大家喜欢! 电脑不能打汉字的解决方法 【关闭高级文字服务】 1&#xff0c;首先我…