从头认识Spring-1.6 Bean的创建与销毁操作

这一章节我们来介绍一下Bean的创建与销毁操作。

在xml的配置里面,我们可以配置Bean的创建与销毁操作。

(1)domain

package com.raylee.my_new_spring.my_new_spring.ch01.topic_1_6;

public class Chief {
	private final int id = index++;

	public int getId() {
		return id;
	}

	public void create() {
		System.out.println("chief created");
	}

	public void destroy() {
		System.out.println("chief destroy");
	}

	private static int index = 0;

}

除了定义每一个对象的id之外,还定义了创建和销毁操作的相应的方法create和destroy

(2)配置xml里面的Bean时,我们需要配置init-method="create" destroy-method="destroy"

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:context="http://www.springframework.org/schema/context"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tx="http://www.springframework.org/schema/tx"
	xmlns:aop="http://www.springframework.org/schema/aop"
	xsi:schemaLocation="
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
		http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd
		http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.1.xsd
		http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.1.xsd
		http://www.springframework.org/schema/data/jpa http://www.springframework.org/schema/data/jpa/spring-jpa-1.0.xsd
		http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
       http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd">
	<bean id="chief"
		class="com.raylee.my_new_spring.my_new_spring.ch01.topic_1_6.Chief"
		init-method="create" destroy-method="destroy" />
</beans>

(3)测试类,只是简单的geiId

package com.raylee.my_new_spring.my_new_spring.ch01.topic_1_6;

import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.ApplicationContext;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = {
		"/com/raylee/my_new_spring/my_new_spring/ch01/topic_1_6/ApplicationContext-test.xml" })
public class ChiefTest {

	@Autowired
	private ApplicationContext applicationContext;

	@Test
	public void testChief() {
		Chief chief = applicationContext.getBean(Chief.class);
		System.out.println("chief id:" + chief.getId());
	}
}

输出:

chief created
chief id:0
chief destroy

创建操作发生在对象的创建之后,销毁操作发生在对象的销毁之后。

(4)我们修改一下测试类和domain,让上面的结果更加突出

domain:

package com.raylee.my_new_spring.my_new_spring.ch01.topic_1_6;

public class Chief {
	static {
		System.out.println("before chief create");
	}

	public Chief() {
		System.out.println("chief construtor");
	}

	private final int id = index++;

	public int getId() {
		return id;
	}

	public void create() {
		System.out.println("chief created");
	}

	public void destroy() {
		System.out.println("chief destroy");
	}

	private static int index = 0;

}

我们在domain里面增加了优先执行的静态代码块,以及在构造器里面增加了输出

测试类:

package com.raylee.my_new_spring.my_new_spring.ch01.topic_1_6;

import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.ApplicationContext;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = {
		"/com/raylee/my_new_spring/my_new_spring/ch01/topic_1_6/ApplicationContext-test.xml" })
public class ChiefTest {

	@Autowired
	private ApplicationContext applicationContext;

	@Test
	public void testChief() {
		for (int i = 0; i < 3; i++) {
			Chief chief = applicationContext.getBean(Chief.class);
			System.out.println("chief id:" + chief.getId());
		}
	}
}

在测试类里面我们增加了循环取id的操作。

测试输出:

before chief create
chief construtor
chief created
chief id:0
chief id:0
chief id:0
chief destroy

有输出可以看出,执行顺序是:

(1)静态代码块

(2)构造函数,创建对象

(3)创建操作

(4)执行业务操作

(5)销毁操作

总结:这一章节简单介绍了Bean的创建与销毁操作。

目录:http://blog.csdn.net/raylee2007/article/details/50611627

我的github:https://github.com/raylee2015/my_new_spring

时间: 2024-12-26 11:53:00

从头认识Spring-1.6 Bean的创建与销毁操作的相关文章

【Spring学习】Bean生命周期

我理解的Bean生命周期包括两个方面: Bean何时创建,何时销毁 Bean从创建到销毁的执行流程 一.Bean创建与销毁 Bean的创建时机主要由几个配置项共同来决定,包括: scope属性,决定是Bean是单例模式(singleton)还是多例模式(prototype),默认为单例singleton: lazy-init属性,只对单例模式有效,决定是否延时加载,默认为false,表示在容器初始化时,就会生成单例: RequestMapping属性,这个注解MVC中才有,当有该属性时,lazy

[spring]03_装配Bean

JavaBean JavaBean 是什么 JavaBean 是一种JAVA语言写成的可重用组件. 为写成JavaBean,类必须是具体的和公共的,并且具有无参数的构造器. JavaBean 通过提供符合一致性设计模式的公共方法将内部域暴露成员属性. 例 以下是一个简单的JavaBean类. 定义一个Person类,有 name 和 age 两个属性,以及这两个属性的 get.set 方法. package com.demo.web.controllers; public class Perso

spring实战装配bean之Bean的作用域以及初始化和销毁Bean

1.Bean的作用域 所有的spring bean默认都是单例.当容器分配一个Bean时,不论是通过装配还是调用容器的getBean()方法,它总是返回Bean的同一个实例.有时候需要每次请求时都获得唯一的Bean实例,那么就需要覆盖Spring默认的单例配置.当在Spring中配置<bean>元素时,可以为bean声明一个作用域.为了让spring在每次请求时都为bean产生一个新的实例,只需要配置bean的scope属性为prototype即可.如下所示: <bean id=&quo

spring中bean的五种作用域?Spring中的bean是线程安全的吗?

spring中bean的五种作用域 当通过spring容器创建一个Bean实例时,不仅可以完成Bean实例的实例化,还可以为Bean指定特定的作用域.Spring支持如下5种作用域: singleton:单例模式,在整个Spring IoC容器中,使用singleton定义的Bean将只有一个实例 prototype:原型模式,每次通过容器的getBean方法获取prototype定义的Bean时,都将产生一个新的Bean实例 request:对于每次HTTP请求,使用request定义的Bea

spring中的bean的生命周期

bean的生命周期:bean的创建 —— 初始化 ——销毁的过程 容器管理bean的生命周期,我们可以自定义初始化和销毁方法,容器在bean进行到当前生命周期就会调用我们的方法 在xml配置文件中是在bean的标签内使用init-method和destroy-method <bean id="person" class="com.springbean.Person" init-method="" destroy-method="&

Spring IoC源码解析——Bean的创建和初始化

Spring介绍 Spring(http://spring.io/)是一个轻量级的Java 开发框架,同时也是轻量级的IoC和AOP的容器框架,主要是针对JavaBean的生命周期进行管理的轻量级容器,可以单独使用,也可以和Struts框架,MyBatis框架等组合使用. IoC介绍 IoC是什么 Ioc-Inversion of Control,即"控制反转",不是什么技术,而是一种设计思想.在Java开发中,Ioc意味着将你设计好的对象交给容器控制,而不是传统的在你的对象内部直接控

Spring Boot 使用Java代码创建Bean并注册到Spring中

从 Spring3.0 开始,增加了一种新的途经来配置Bean Definition,这就是通过 Java Code 配置 Bean Definition. 与Xml和Annotation两种配置方式不同点在于: 前两种Xml和Annotation的配置方式为预定义方式,即开发人员通过 XML 文件或者 Annotation 预定义配置 bean 的各种属性后,启动 Spring 容器,Spring 容器会首先解析这些配置属性,生成对应都?Bean Definition,装入到 DefaultL

Spring BPP中优雅的创建动态代理Bean

一.前言 本文章所讲并没有基于Aspectj,而是直接通过Cglib以及ProxyFactoryBean去创建代理Bean.通过下面的例子,可以看出Cglib方式创建的代理Bean和ProxyFactoryBean创建的代理Bean的区别. 二.基本测试代码 测试实体类,在BPP中创建BppTestDepBean类型的代理Bean. @Component public static class BppTestBean { @Autowired private BppTestDepBean dep

Spring源码学习-容器BeanFactory(五) Bean的创建-探寻Bean的新生之路

写在前面 上面四篇文章讲了Spring是如何将配置文件一步一步转化为BeanDefinition的整个流程,下面就到了正式创建Bean对象实例的环节了,我们一起继续学习吧. 2.初始化Bean对象实例 Resource resource = new ClassPathResource("beanFactory.xml"); BeanFactory beanFactory = new XmlBeanFactory(resource); Student student = beanFact