共计 6064 个字符,预计需要花费 16 分钟才能阅读完成。
起源:blog.csdn.net/u011909918/article/details/109647196
前言
先走漏一下,四大组件别离是:starter,autoconfigure, CLI 以及 actuator。上面咱们就来具体介绍一些他们有什么用。
一、Spring Boot Starter
1.1 Starter 的利用示例
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>1.3.2</version>
</dependency>
Spring Boot 根底就不介绍了,举荐下这个实战教程:
https://github.com/javastacks…
在咱们的 Spring Boot 我的项目种的 POM 文件中总会看到这两种依赖:
spring-boot-starter-xxx
和 xxx-spring-boot-starter
。
这就是 spring boot 的四大组件之一的 starter。
a、spring-boot-starter-thymeleaf
b、mybatis-spring-boot-starter
两种 starter 的区别就是 >>
- 官网提供的 starter 是这样的:spring-boot-starter-xxx
- 非官方的 starter 是这样的:xxx-spring-boot-starter
其中 xxx 就是咱们想要依赖的组件或者 jar 包。上例就是咱们 spring boot 用来引入 thymeleaf 引擎和 mybatis 框架所配置的依赖。引入之后通过简略的约定配置就能够失常应用。比方:
Thymeleaf 引擎约定配置:
## 前端引擎配置
spring:
thymeleaf:
enabled: true
servlet:
content-type: text/html
mode: HTML
## 页面前缀
prefix: classpath:/templates/
## 后缀
suffix: .html
Mybatis 约定配置:
mybatis:
mapper-locations: classpath:mapper/*.xml #留神:肯定要对应 mapper 映射 xml 文件的所在门路
type-aliases-package: com.hi.ld.vo.system # 留神:对应实体类的门路
configuration:
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
上面让咱们来看看以前怎么配置 thymeleaf。
1.2 Spring Boot 之前的 Thymeleaf 和 Mybatis 利用
废话不多说,间接上代码:
1.2.1 Thymeleaf 配置
a. 增加对应依赖:
<dependency>
<groupId>org.thymeleaf</groupId>
<artifactId>thymeleaf-spring5</artifactId>
<version>3.0.11.RELEASE</version>
</dependency>
<dependency>
<groupId>org.thymeleaf.extras</groupId>
<artifactId>thymeleaf-extras-java8time</artifactId>
<version>3.0.4.RELEASE</version>
</dependency>
b. bean 配置
<bean id="templateResolver"
class="org.thymeleaf.templateresolver.ServletContextTemplateResolver">
<property name="prefix" value="/WEB-INF/templates/" />
<property name="suffix" value=".html" />
<property name="templateMode" value="HTML5" />
</bean>
<bean id="templateEngine"
class="org.thymeleaf.spring4.SpringTemplateEngine">
<property name="templateResolver" ref="templateResolver" />
</bean>
<bean class="org.thymeleaf.spring4.view.ThymeleafViewResolver">
<property name="templateEngine" ref="templateEngine" />
</bean>
1.2.2 Mybatis 配置
a. 增加对应依赖:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
</dependency>
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis-spring</artifactId>
</dependency>
b. bean 配置
上面的第 3,4 步骤就是 Mybatis 相干配置。第一步是引入资源配置。第二步是配置数据源
<?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: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">
<!-- 配置整合 mybatis 过程 -->
<!-- 1. 配置数据库相干参数 properties 的属性:${url} -->
<context:property-placeholder location="classpath:jdbc.properties" />
<!-- 2. 数据库连接池 -->
<bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
<!-- 配置连接池属性 -->
<property name="driverClass" value="${jdbc.driver}" />
<property name="jdbcUrl" value="${jdbc.url}" />
<property name="user" value="${jdbc.username}" />
<property name="password" value="${jdbc.password}" />
<!-- c3p0 连接池的公有属性 -->
<property name="maxPoolSize" value="30" />
<property name="minPoolSize" value="10" />
<!-- 敞开连贯后不主动 commit -->
<property name="autoCommitOnClose" value="false" />
<!-- 获取连贯超时工夫 -->
<property name="checkoutTimeout" value="10000" />
<!-- 当获取连贯失败重试次数 -->
<property name="acquireRetryAttempts" value="2" />
</bean>
<!-- 3. 配置 SqlSessionFactory 对象 -->
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<!-- 注入数据库连接池 -->
<property name="dataSource" ref="dataSource" />
<!-- 配置 MyBaties 全局配置文件:mybatis-config.xml -->
<property name="configLocation" value="classpath:mybatis-config.xml" />
<!-- 扫描 entity 包 应用别名 -->
<property name="typeAliasesPackage" value="com.soecode.lyf.entity" />
<!-- 扫描 sql 配置文件:mapper 须要的 xml 文件 -->
<property name="mapperLocations" value="classpath:mapper/*.xml" />
</bean>
<!-- 4. 配置扫描 Dao 接口包,动静实现 Dao 接口,注入到 spring 容器中 -->
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
<!-- 注入 sqlSessionFactory -->
<property name="sqlSessionFactoryBeanName" value="sqlSessionFactory" />
<!-- 给出须要扫描 Dao 接口包 -->
<property name="basePackage" value="com.soecode.lyf.dao" />
</bean>
</beans>
1.2.3 小结
a、Starter 帮咱们封装好了所有须要的依赖, 防止咱们本人增加导致的一些 Jar 包抵触或者短少包的状况;
b、Starter 帮咱们主动注入了须要的 Bean 实例到 Spring 容器中,不须要咱们手动配置(这个能够说是 starter 干的,实际上并不是,这里埋个坑,上面解答);
所以: starter 包的内容就是 pom 文件,就是一个依赖传递包。
二、Spring Boot Autoconfigure
2.1 autoconfigure 简介
autoconfigure 在咱们的开发中并不会被感知,因为它是存在与咱们的 starter 中的。所以咱们的每个 starter 都是依赖 autoconfigure 的:
当然咱们也能够把 autoconfig 的内容间接放在 starter 包里边。
a. spring-boot-autoconfigure:
留神:这里有个点,就是官网提供的 configure 大多数在 spring-boot-autoconfigure 包里边,并没有独自创立新包。
b、mybatis-spring-boot-autoconfigure
2.2 小结
autoconfigure 内容是配置 Bean 实例到 Spring 容器的理论代码实现包,而后提供给 starter 依赖。所以说 1.2.3 中的 b 项所说的配置 Bean 实例到 Spring 容器中理论是 autoconfigure 做的,因为是 starter 依赖它,所以也能够说是 starter 干的。
所以:autocinfigure 是 starter 体现进去的能力的代码实现
三、Spring Boot CLI
Spring Boot CLI 是一个命令行应用 Spring Boot 的客户端工具;次要性能如下:
- 运行 groovy 脚本 => 官网 2.1
- 打包 groovy 文件到 jar => 官网 2.3
- 初始化 Spring Boot 我的项目 => 官网 2.4
- 其余
先上个官网文档:
https://docs.spring.io/spring…
因为这个咱们用的比拟少,所以就不多赘述了。个人感觉比拟流脾的性能就是命令行间接执行 groovy 脚本了。
四、Spring Boot actuator
actuator 是 Spring Boot 的监控插件,自身提供了很多接口能够获取以后我的项目的各项运行状态指标。
官网文档:
https://docs.spring.io/spring…
名词解释:
Endpoints: 须要监控的端点。参考官网第二节官网文档
可用的端点:
下方的是 web 工程的端点。
应用办法如下:
4.1 增加依赖
Spring Boot 根底就不介绍了,举荐下这个实战教程:
https://github.com/javastacks…
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
4.2 配置须要开启监控的端点
management:
endpoint:
health: ## 开启衰弱监控端点
enabled: true
beans: ## 开启 Bean 实例监控端点
enabled: true
4.3 启动服务并验证
4.3.1 启动后果
4.3.2 查看各个监控信息
浏览器拜访(查看监控信息地址):http://localhost:9500/actuator
查看服务衰弱状态:
其余 API 查看官网文档理解或者留言一起钻研一下,厚着脸皮我也没怎么用过这个。不过下一章介绍了 starter 和 autoconfigure 之后咱们就能够去钻研 actuator 的源码了。。。。
总结
本章次要介绍了 Spring Boot 的四大组件的作用,其中次要是 starter 和 autoconfigure,另外的 CLI 和 actuator 用的并不多,所以没有认真介绍。
近期热文举荐:
1.1,000+ 道 Java 面试题及答案整顿 (2022 最新版)
2. 劲爆!Java 协程要来了。。。
3.Spring Boot 2.x 教程,太全了!
4.20w 程序员红包封面,快快支付。。。
5.《Java 开发手册(嵩山版)》最新公布,速速下载!
感觉不错,别忘了顺手点赞 + 转发哦!