1、SpringBoot特点
1.1、依赖管理
● 父项目做依赖管理
依赖管理
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.3.4.RELEASE</version>
</parent>
他的父项目
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>2.3.4.RELEASE</version>
</parent>
几乎声明了所有开发中常用的依赖的版本号,自动版本仲裁机制
父子工程:无需声明版本,子工程会继承父工程的依赖
● 开发导入starter场景启动器
1、见到很多 spring-boot-starter-* : *就某种场景
2、只要引入starter,这个场景的所有常规需要的依赖我们都自动引入
3、SpringBoot所有支持的场景
https://docs.spring.io/spring-boot/docs/current/reference/html/using-spring-boot.html#using-boot-starter
4、见到的 *-spring-boot-starter: 第三方为我们提供的简化开发的场景启动器。
5、所有场景启动器最底层的依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
<version>2.3.4.RELEASE</version>
<scope>compile</scope>
</dependency>
查看依赖树:
● 无需关注版本号,自动版本仲裁
1、引入依赖默认都可以不写版本
2、引入非版本仲裁的jar,要写版本号。
● 可以修改默认版本号
1、查看spring-boot-dependencies里面规定当前依赖的版本 用的 key。
2、在当前项目里面重写配置
<properties>
<mysql.version>5.1.43</mysql.version>
</properties>
如果对仲裁的版本不满意,需要依赖其他的版本,直接去MAVEN仓库里,搜索到需要的版本,复制依赖到代码
1.2、自动配置
自动配好Tomcat
○ 引入Tomcat依赖。
○ 配置Tomcat
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
<version>2.3.4.RELEASE</version>
<scope>compile</scope>
</dependency>
pom里的spring-boot-starter-web为我们引入了tomcat
自动配好SpringMVC
○ 引入SpringMVC全套组件
○ 自动配好SpringMVC常用组件(功能)
自动配好Web常见功能,如:字符编码问题
○ SpringBoot帮我们配置好了所有web开发的常见场景
例子:MainApploication 的 run 会返回容器
【选中run, ALT+ctrl 快捷键 引入本地变量】
Run MainApplication打印出容器名称
字符编码问题
characterEncodingFilter组件 保证请求参数中文不乱码
stringHttpMessageConverter 解决的是响应中文不乱码
默认的包结构
○ 主程序所在包及其下面的所有子包里面的组件都会被默认扫描进来
○ 无需以前的包扫描配置
○ 想要改变扫描路径,@SpringBootApplication(scanBasePackages=“com.atguigu”) 或者 @ComponentScan 指定扫描路径
@SpringBootApplication
等同于
@SpringBootConfiguration
@EnableAutoConfiguration
@ComponentScan("com.atguigu.boot")
例子:controller文件不在主程序同级及以下的
如果controller文件不在主程序同级及以下会出现无法访问的问题,除非改变扫描路径
如上图,WorldController请求的页面是无法加载的
在主程序加入如下语句改变扫描路径,就可以访问到WorldController请求页面
@SpringBootApplication(scanBasePackages = {"com.zj"})
各种配置拥有默认值
○ 默认配置最终都是映射到某个类上,如:MultipartProperties
○ 配置文件的值最终会绑定每个类上,这个类会在容器中创建对象
这些配置在properties文件里面可以修改
按需加载所有自动配置项
○ 非常多的starter
○ 引入了哪些场景这个场景的自动配置才会开启
○ SpringBoot所有的自动配置功能都在 spring-boot-autoconfigure 包里面
2、容器功能
2.1、组件添加
1、@Configuration
有了该组件就不需要进行XML文件编写
原始的XML文件使用Bean标签给容器添加组件
这里使用Myconfig文件以及@Configuration组件来代替
@Configuration基本使用
Full模式与Lite模式
- 示例
- 最佳实战
-
- 配置 类组件之间无依赖关系用Lite模式加速容器启动过程,减少判断
-
- 配置 类组件之间有依赖关系,方法会被调用得到之前单实例组件,用Full模式
#############################Configuration使用示例######################################################
/**
* 1、配置类里面使用@Bean标注在方法上给容器注册组件,默认也是单实例的
* 2、配置类本身也是组件
* 3、proxyBeanMethods:代理bean的方法
* Full(proxyBeanMethods = true)、【保证每个@Bean方法被调用多少次返回的组件都是单实例的】
* Lite(proxyBeanMethods = false)【每个@Bean方法被调用多少次返回的组件都是新创建的】
* 组件依赖必须使用Full模式默认。其他默认是否Lite模式
*
*/
@Configuration(proxyBeanMethods = false) //告诉SpringBoot这是一个配置类 == 配置文件
public class MyConfig {
/**
* Full:外部无论对配置类中的这个组件注册方法调用多少次获取的都是之前注册容器中的单实例对象
* @return
*/
@Bean //给容器中添加组件。以方法名作为组件的id。返回类型就是组件类型。返回的值,就是组件在容器中的实例
public User user01(){
User zhangsan = new User("zhangsan", 18);
//user组件依赖了Pet组件
zhangsan.setPet(tomcatPet());
return zhangsan;
}
@Bean("tom")//自定义了组件名称为tom,否则为方法名
public Pet tomcatPet(){
return new Pet("tomcat");
}
}
################################@Configuration测试代码如下########################################
@SpringBootConfiguration
@EnableAutoConfiguration
@ComponentScan("com.atguigu.boot")
public class MainApplication {
public static void main(String[] args) {
//1、返回我们IOC容器
ConfigurableApplicationContext run = SpringApplication.run(MainApplication.class, args);
//2、查看容器里面的组件
String[] names = run.getBeanDefinitionNames();
for (String name : names) {
System.out.println(name);
}
//3、从容器中获取组件
Pet tom01 = run.getBean("tom", Pet.class);
Pet tom02 = run.getBean("tom", Pet.class);
System.out.println("组件:"+(tom01 == tom02));
//4、com.atguigu.boot.config.MyConfig$$EnhancerBySpringCGLIB$$51f1e1ca@1654a892
MyConfig bean = run.getBean(MyConfig.class);
System.out.println(bean);
//如果@Configuration(proxyBeanMethods = true)代理对象调用方法。SpringBoot总会检查这个组件是否在容器中有。
//保持组件单实例
User user = bean.user01();
User user1 = bean.user01();
System.out.println(user == user1);
User user01 = run.getBean("user01", User.class);
Pet tom = run.getBean("tom", Pet.class);
System.out.println("用户的宠物:"+(user01.getPet() == tom));
}
}
Full模式和Lite模式是针对spring配置而言的,和xml配置无关。
何时为Lite模式:
1.类上有@Component注解
2.类上有@ComponentScan注解
3.类上有@Import注解
4.类上有@ImportResource注解
5.类上没有任何注解,但是类中存在@Bean方法
6.类上有@Configuration(proxyBeanMethods = false)注解
Lite总结:运行时不用生成CGLIB子类,提高运行性能,降低启动时间,可以作为普通类使用。但是不能声明@Bean之间的依赖
何时为Full模式:
1.标注有@Configuration或者@Configuration(proxyBeanMethods = true)的类被称为Full模式的配置类。
Full模式总结:单例模式能有效避免Lite模式下的错误。性能没有Lite模式好,需要被别人依赖的时候用Full
2、@Bean、@Component、@Controller、@Service、@Repository
@Bean、@Component、@Controller、@Service、@Repository 是 Spring 框架中的不同类型的 Spring Bean。在 Spring 中,bean 是由 Spring IoC 容器管理的对象。不同类型的 bean 有不同的用途,在不同的情况下使用。
@Bean 是一个通用的注解,可用于声明任何 Spring bean。它通常用于创建不受其他更具体注解(如 @Component、@Service 或 @Repository)支持的 bean。
@Component 是 @Bean 注解的更具体版本,用于声明一个 Spring bean,它是一个可重用的组件,例如控制器或服务。
@Controller 是一种 Spring bean,用于创建 web 控制器。这些 bean 处理传入的 web 请求并返回适当的响应。
@Service 是一种 Spring bean,用于创建业务服务组件。这些 bean 实现应用程序的业务逻辑,通常由控制器和其他组件使用。
@Repository 是一种 Spring bean,用于创建数据访问组件。这些 bean 处理与数据库或其他持久化机制的交互,通常由服务用于存储和检索数据。
PS : Spring Bean 是 Spring 框架中的一种对象。它是由 Spring IoC 容器管理的,容器负责创建 bean,管理它们的生命周期,并在应用程序需要时将它们提供给应用程序。
Spring Bean 通常用于实现应用程序的业务逻辑和数据访问,它们可以被其他 Spring Bean 调用。使用 Spring Bean 可以更容易地管理应用程序中的对象,并实现松耦合和可重用的代码。
要声明一个 Spring Bean,可以使用 @Bean 或其他更具体的注解(如 @Component、@Service 或 @Repository),并在 Spring 配置文件中定义 bean 的相关属性。在应用程序启动时,Spring IoC 容器会根据配置创建所有的 bean,并将它们提供给应用程序使用。
3、@ComponentScan、@Import
@ComponentScan 之前讲过了直接说@Import
/ * 4、@Import({User.class, DBHelper.class})
* 给容器中自动创建出这两个类型的组件、默认组件的名字就是全类名
*
*/
@Import({User.class, DBHelper.class})
@Configuration(proxyBeanMethods = false) //告诉SpringBoot这是一个配置类 == 配置文件
public class MyConfig {
}
MainApplication 打印出来看一下
//5.获取组件
String[] beanNamesForType = run.getBeanNamesForType(User.class);
System.out.println("=======所有User组件的名字:=======");
for (String s : beanNamesForType) {
System.out.println(s);
}
DBHelper bean1 = run.getBean(DBHelper.class);
System.out.println(bean1);
@Import 高级用法: https://www.bilibili.com/video/BV1gW411W7wy?p=8
4、@Conditional
条件装配:满足Conditional指定的条件,则进行组件注入
条件注解,加在方法上,当条件成立后,方法返回的组件才会被注册在容器中,否则不被注册
加载类上,只有成立后,类才会生效
例子:
@ConditionalOnBean(name=“tom”)
@ConditionalOnMissingBean(name=“tom”)
=====================测试条件装配==========================
@Configuration(proxyBeanMethods = false) //告诉SpringBoot这是一个配置类 == 配置文件
//@ConditionalOnBean(name = "tom")
@ConditionalOnMissingBean(name = "tom")
public class MyConfig {
/**
* Full:外部无论对配置类中的这个组件注册方法调用多少次获取的都是之前注册容器中的单实例对象
* @return
*/
@Bean //给容器中添加组件。以方法名作为组件的id。返回类型就是组件类型。返回的值,就是组件在容器中的实例
public User user01(){
User zhangsan = new User("zhangsan", 18);
//user组件依赖了Pet组件
zhangsan.setPet(tomcatPet());
return zhangsan;
}
@Bean("tom22")
public Pet tomcatPet(){
return new Pet("tomcat");
}
}
public static void main(String[] args) {
//1、返回我们IOC容器
ConfigurableApplicationContext run = SpringApplication.run(MainApplication.class, args);
//2、查看容器里面的组件
String[] names = run.getBeanDefinitionNames();
for (String name : names) {
System.out.println(name);
}
boolean tom = run.containsBean("tom");
System.out.println("容器中Tom组件:"+tom);
boolean user01 = run.containsBean("user01");
System.out.println("容器中user01组件:"+user01);
boolean tom22 = run.containsBean("tom22");
System.out.println("容器中tom22组件:"+tom22);
}
2.2、原生配置文件引入
1、@ImportResource
该注解用于导入组件,如果有用XML来写Bean的配置,采用该组件可以导入配置
@ImportResource(“classpath:beans.xml”)
======================beans.xml=========================
<?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 https://www.springframework.org/schema/context/spring-context.xsd">
<bean id="haha" class="com.atguigu.boot.bean.User">
<property name="name" value="zhangsan"></property>
<property name="age" value="18"></property>
</bean>
<bean id="hehe" class="com.atguigu.boot.bean.Pet">
<property name="name" value="tomcat"></property>
</bean>
</beans>
@ImportResource("classpath:beans.xml")
public class MyConfig {}
======================测试=================
boolean haha = run.containsBean("haha");
boolean hehe = run.containsBean("hehe");
System.out.println("haha:"+haha);//true
System.out.println("hehe:"+hehe);//true
2.3、配置绑定
如何使用Java读取到properties文件中的内容,并且把它封装到JavaBean中,以供随时使用;
public class getProperties {
public static void main(String[] args) throws FileNotFoundException, IOException {
Properties pps = new Properties();
pps.load(new FileInputStream("a.properties"));//加载配置文件
Enumeration enum1 = pps.propertyNames();//得到配置文件的名字
//遍历并封装
while(enum1.hasMoreElements()) {
String strKey = (String) enum1.nextElement();
String strValue = pps.getProperty(strKey);
System.out.println(strKey + "=" + strValue);
//封装到JavaBean。
}
}
}
SpringBoot下面有几种方法来简化配置
1、@ConfigurationProperties
@Component//把组件加到容器中
@ConfigurationProperties(prefix = “mycar”)
//prefix:指定类里的属性与properties哪个前缀的属性一一绑定
/**
* 只有在容器中的组件,才会拥有SpringBoot提供的强大功能
*/
@Component
@ConfigurationProperties(prefix = "mycar")
public class Car {
private String brand;
private Integer price;
public String getBrand() {
return brand;
}
public void setBrand(String brand) {
this.brand = brand;
}
public Integer getPrice() {
return price;
}
public void setPrice(Integer price) {
this.price = price;
}
@Override
public String toString() {
return "Car{" +
"brand='" + brand + '\'' +
", price=" + price +
'}';
}
}
==============controller测试===========
@RestController
public class HelloController {
@Autowired
Car car;
@RequestMapping("/car")
public Car car(){
return car;
}
@RequestMapping("/hello")
public String handle01() {
return "Hello, Spring Boot 2!" +"你好!";
}
}
2、@EnableConfigurationProperties + @ConfigurationProperties
这个一定要在配置类(MyConfig)里写,用于导入第三方类的时候【第三方不一定写了@Component把组件加到容器中入】
=====Myconfig=====
@EnableConfigurationProperties(Car.class)//开启属性配置绑定功能
//1、开启Car属性配置绑定功能
//2、把这个Car组件自动注册到容器中
public class MyConfig {
}
=====Car.java=====
//@Component
@ConfigurationProperties(prefix = "mycar")
3、@Component + @ConfigurationProperties
=====Car.java=====
@Component//把组件加到容器中
@ConfigurationProperties(prefix = "mycar")
//prefix:指定类里的属性与properties哪个前缀的属性一一绑定