Spring5学习笔记
IOC
1、IOC思想基于IOC容器完成。IOC容器底层就是对象工厂
2、Spring提供IOC容器实现的两种方式:(两个接口)
(1)BeanFactory: IOC容器基本实现,是Spring内部的使用接口,不提供开发人员使用
特点:加载配置文件时不会创建对象,在获取对象(使用)才去创建对象。
(2)ApplicationContext: BeanFactory的子接口,提供更多更强大的功能,一般由开发人员进行使用。
特点:加载配置文件时就会创建对象。
3、ApplicationContext 接口实现类
4、IOC操作 Bean管理
(1)什么是Bean管理:
【0】Bean管理就两个操作
【1】Spring创建对象
【2】Spring注入属性
(2)Bean管理操作有两种方式
【1】基于XML配置文件方式实现
【2】基于注解方式实现
IOC操作 Bean管理(基于XML)
1、基于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"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="user" class="com.yyk.pojo.User"></bean>
</beans>
(1)在 spring 配置文件中,使用 bean 标签,标签里面添加对应属性,就可以实现对象创建
(2)在 bean 标签有很多属性,介绍常用的属性
- id 属性:唯一标识
- class 属性:类全路径(包类路径)
(3)创建对象时候,默认也是执行无参数构造方法完成对象创建
2、基于XML方式注入属性
(1)DI:依赖注入,就是注入属性
3、第一种注入方式:使用 set 方法进行注入
(1)创建类,定义属性和对应的 set 方法
package com.yyk.dao;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@AllArgsConstructor
@NoArgsConstructor
public class User {
private String name;
private int age;
}
(2)在 spring 配置文件配置对象创建,配置属性注入
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="user" class="com.yyk.dao.User">
<property name="name" value="YYK"></property>
<property name="age" value="13"></property>
</bean>
</beans>
测试
package com.yyk.dao;
import junit.framework.TestCase;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class UserTest extends TestCase {
public static void main(String[] args) {
ApplicationContext context =new ClassPathXmlApplicationContext("beans.xml");
User user = context.getBean("user", User.class);
user.toString();
user.print();
}
}
4、第二种注入方式:使用有参数构造进行注入
(1)创建类,使用Lombok创建get set 以及有参构造方法
? Lombok依赖如下
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.20</version>
</dependency>
package com.yyk.dao;
import lombok.AllArgsConstructor;
import lombok.Data;
@Data
@AllArgsConstructor
public class Book {
private String name;
private String number;
public void bookTest(){
System.out.println("name: "+name);
System.out.println("number: "+number);
}
}
(2)在 spring 配置文件中进行配置
<bean id="book" class="com.yyk.dao.Book">
<constructor-arg name="name" value="笑傲江湖"></constructor-arg>
<constructor-arg name="number" value="YYK-0001"></constructor-arg>
</bean>
测试
package com.yyk.dao;
import junit.framework.TestCase;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class BookTest extends TestCase {
public static void main(String[] args) {
ApplicationContext Context = new ClassPathXmlApplicationContext("beans.xml");
Book book = Context.getBean("book", Book.class);
book.bookTest();
}
}
|