121_Java_Spring5_IOC1_xml2
IOC 操作 Bean 管理(FactoryBean)
1 Spring 有两种类型 bean, 普通 bean; 工厂bean(FactoryBean)
2 普通 bean:在配置文件中定义 bean 类型就是返回类型
3 工厂 bean:在配置文件定义 bean 类型可以和返回类型不一样
第一步 创建类,让这个类作为工厂 bean,实现接口 FactoryBean
第二步 实现接口里面的方法,在实现的方法中定义返回的 bean 类型
public class Course {
private String cname; //课程名称
public void setCname(String cname) {
this.cname = cname;
}
@Override
public String toString() {
return "Course{" +
"cname='" + cname + '\'' +
'}';
}
}
// 实现 FactoryBean<Course> 接口,传入相关类型
public class MyBean implements FactoryBean<Course> {
@Override
public Course getObject() throws Exception {
Course course = new Course();
course.setCname("java");
return course;
}
@Override
public Class<?> getObjectType() {
return null;
}
@Override
public boolean isSingleton() {
return false;
}
}
bean xml 配置
<bean id="myBean" class="com.sully.factory.MyBean"></bean>
@Test
public void test1(){
ApplicationContext context1 = new ClassPathXmlApplicationContext("bean1.xml");
// 传入的是要返回的 对象类型
Course myBean = context1.getBean("myBean", Course.class);
System.out.println(myBean);
}
IOC 操作 Bean 管理(bean 作用域) 默认单实例, 配置scope属性 (singleton,prototype )
1 singleton 单实例,prototype 多实例
2 设置 scope值是 singleton 时候,加载 spring 配置文件时候就会创建单实例对象
设置 scope值是 prototype 时候,不是在加载 spring 配置文件时候创建 对象,在调用getBean 方法时候创建多实例对象
<bean id="book" class="com.sully.bean.Book" scope="prototype"></bean>
IOC 操作 Bean 管理(bean 生命周期)
1 生命周期: 从对象创建到对象销毁的过程
2 bean生命周期(5个) & bean后置处理器 (7个)
(1)通过构造器创建 bean 实例(无参数构造)
(2)为 bean 的属性设置值和对其他 bean 引用(调用 set 方法)
(3)把 bean 实例传递 bean 后置处理器的方法 postProcessBeforeInitialization
(4)调用 bean 的初始化的方法(需要进行配置初始化的方法)
(5)把 bean 实例传递 bean 后置处理器的方法 postProcessAfterInitialization
(6)bean 可以使用了(对象获取到了)
(7)当容器关闭时候,调用 bean 的销毁的方法(需要进行配置销毁的方法)
public class Orders {
//无参数构造
public Orders() {
System.out.println("第一步 执行无参数构造创建bean实例");
}
private String oname;
public void setOname(String oname) {
this.oname = oname;
System.out.println("第二步 调用set方法设置属性值");
}
//创建执行的初始化的方法
public void initMethod() {
System.out.println("第三步 执行初始化的方法");
}
//创建执行的销毁的方法
public void destroyMethod() {
System.out.println("第五步 执行销毁的方法");
}
}
public class OrdersPost implements BeanPostProcessor {
@Override
public Object postProcessBeforeInitialization(Object bean, String beanName) throws BeansException {
System.out.println("order在初始化之前执行的方法");
return bean;
}
@Override
public Object postProcessAfterInitialization(Object bean, String beanName) throws BeansException {
System.out.println("order在初始化之后执行的方法");
return bean;
}
}
<bean id="orders" class="com.sully.bean.Orders" init-method="initMethod" destroy-method="destroyMethod">
<property name="oname" value="手机"></property>
</bean>
<!--配置后置处理器 所有bean 都添加 后置处理器---->
<bean id="ordersPost" class="com.sully.bean.OrdersPost"></bean>
@Test
public void test3(){
ClassPathXmlApplicationContext context2 = new ClassPathXmlApplicationContext("bean2.xml");
Object orders = context2.getBean("orders", Orders.class);
System.out.println("第四步 获取创建bean实例对象");
System.out.println(orders);
//手动让bean实例销毁
context2.close();
// 第一步 执行无参数构造创建bean实例
// 第二步 调用set方法设置属性值
// order在初始化之前执行的方法
// 第三步 执行初始化的方法
// order在初始化之后执行的方法
// 第四步 获取创建bean实例对象
// com.sully.bean.Orders@8646db9
// 第五步 执行销毁的方法
}
IOC 操作 Bean 管理(xml 自动装配) 根据指定装配规则(属性名称或者属性类型),Spring 自动将匹配的属性值进行注入
装配过程
(1)根据属性名称自动注入
(2)根据属性类型自动注入
public class Dept {
@Override
public String toString() {
return "Dept{}";
}
}
public class Emp {
private Dept dept;
public void setDept(Dept dept) {
this.dept = dept;
}
@Override
public String toString() {
return "Emp{" +
"dept=" + dept +
'}';
}
public void test() {
System.out.println(dept);
}
}
<!--实现自动装配
bean标签属性autowire,配置自动装配
autowire属性常用两个值:
byName根据属性名称注入 ,注入值bean的id值和类属性名称一样
byType根据属性类型注入, 相同类型的bean 不能定义多个
-->
<!-- <bean id="emp" class="com.sully.bean.Emp" autowire="byName">-->
<bean id="emp" class="com.sully.bean.Emp" autowire="byType">
</bean>
<bean id="dept" class="com.sully.bean.Dept"></bean>
IOC 操作 Bean 管理(外部属性文件) 例 druid连接池
prop.driverClass=com.mysql.jdbc.Driver
prop.url=jdbc:mysql://localhost:3306/test?useSSL=false&characterEncoding=utf8
prop.userName=root
prop.password=xxx
<?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">
<!--引入外部属性文件-->
<context:property-placeholder location="classpath:jdbc.properties"/>
<!--配置连接池-->
<bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource">
<!-- prop.driverClass=com.mysql.jdbc.Driver ${key值}-->
<property name="driverClassName" value="${prop.driverClass}"></property>
<property name="url" value="${prop.url}"></property>
<property name="username" value="${prop.userName}"></property>
<property name="password" value="${prop.password}"></property>
</bean>
</beans>
@Test
public void test5() throws SQLException {
ClassPathXmlApplicationContext context4 = new ClassPathXmlApplicationContext("bean4.xml");
DruidDataSource dataSource = context4.getBean("dataSource", DruidDataSource.class);
System.out.println(dataSource.getConnection());
}
- 点赞
- 收藏
- 关注作者
评论(0)