转:http://blog.csdn.net/zhjb1025/article/details/3244728
Spring 的几个接口
1.InitializingBean接口,在初始化Bean时容器会调用前者的afterPropertiesSet()方法
2.DisposableBean接口,在析构Bean时容器会调用destroy()方法,在下面的例子中好像没有体现出来(革命尚未成功,同志仍需努力)
3.BeanFactoryAware接口,当它被BeanFactory创建后,它会拥有一个指向创建它的BeanFactory的引用
4.BeanPostProcessor接口,这个接口两个方法,postProcessBeforeInitialization(Object bean, String beanName)和postProcessAfterInitialization(Object bean, String beanName) 在其他Bean构造前后执行
5.BeanFactoryPostProcessor接口,Spring IoC容器允许BeanFactoryPostProcessor在容器实际实例化任何其它的bean之前读取配置元数据,并有可能修改它
下面来看一下例子
-
package com.test;
-
-
public class User {
-
private String name;
-
-
public String getName() {
-
return name;
- }
-
-
public void setName(String name) {
-
System.out.println("User类 setName方法");
-
this.name = name;
- }
-
public void init() throws Exception {
-
System.out.println("User类init 方法");
-
- }
-
public User(){
-
System.out.println("User类构造方法");
- }
-
- }
-
-
package com.test;
-
-
import org.springframework.beans.BeansException;
-
import org.springframework.beans.factory.BeanFactory;
-
import org.springframework.beans.factory.BeanFactoryAware;
-
import org.springframework.beans.factory.DisposableBean;
-
import org.springframework.beans.factory.InitializingBean;
-
import org.springframework.beans.factory.config.BeanFactoryPostProcessor;
-
import org.springframework.beans.factory.config.BeanPostProcessor;
-
import org.springframework.beans.factory.config.ConfigurableListableBeanFactory;
-
-
public class JavaBean implements InitializingBean,DisposableBean,BeanFactoryAware,BeanPostProcessor ,BeanFactoryPostProcessor{
-
private String name;
-
public JavaBean(){
-
System.out.println("JavaBean类构造方法");
- }
-
@Override
-
public void afterPropertiesSet() throws Exception {
-
System.out.println("InitializingBean 接口 afterPropertiesSet方法");
-
- }
-
-
@Override
-
public void destroy() throws Exception {
-
System.out.println("DisposableBean 接口 destroy方法");
-
- }
-
public void init() throws Exception {
-
System.out.println("JavaBean类init 方法");
-
- }
-
-
@Override
-
public void setBeanFactory(BeanFactory beanFactory) throws BeansException {
-
System.out.println("BeanFactoryAware 接口 setBeanFactory方法");
-
- }
-
-
@Override
-
public Object postProcessAfterInitialization(Object bean, String beanName)
-
throws BeansException {
-
System.out.println(beanName+":BeanPostProcessor 接口 postProcessAfterInitialization方法");
-
return bean;
- }
-
-
@Override
-
public Object postProcessBeforeInitialization(Object bean, String beanName)
-
throws BeansException {
-
System.out.println(beanName+":BeanPostProcessor 接口 postProcessBeforeInitialization 方法");
-
return bean;
- }
-
-
public String getName() {
-
return name;
- }
-
-
public void setName(String name) {
-
System.out.println("JavaBean类setName 方法");
-
this.name = name;
- }
-
@Override
-
public void postProcessBeanFactory(
-
ConfigurableListableBeanFactory beanFactory) throws BeansException {
-
System.out.println("BeanFactoryPostProcessor 接口 postProcessBeanFactory 方法");
- }
-
-
- }
-
-
package com.test;
-
-
import org.springframework.context.ApplicationContext;
-
import org.springframework.context.support.ClassPathXmlApplicationContext;
-
-
public class Test {
-
-
-
public static void main(String[] args) {
-
System.out.println("加载Spring配置文件");
- ApplicationContext context =
-
new ClassPathXmlApplicationContext("spring.xml");
-
System.out.println("加载Spring配置文件结束");
-
JavaBean bean=(JavaBean)context.getBean("javaBean");
-
System.out.println("获取name属性:"+bean.getName());
-
System.out.println("程序结束");
- }
-
- }
-
Spring配置文件
-
<?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd">
-
<beans>
-
<bean id="javaBean" class="com.test.JavaBean" init-method="init">
-
<property name="name" value="zhjb"></property>
-
</bean>
-
<bean id="user" class="com.test.User" init-method="init">
-
<property name="name" value="zhjb" ></property>
-
</bean>
-
</beans>
运行结果如下:
加载Spring配置文件
JavaBean类构造方法
JavaBean类setName 方法
BeanFactoryAware 接口 setBeanFactory方法
InitializingBean 接口 afterPropertiesSet方法
JavaBean类init 方法
BeanFactoryPostProcessor 接口 postProcessBeanFactory 方法
User类构造方法
User类 setName方法
user:BeanPostProcessor 接口 postProcessBeforeInitialization 方法
User类init 方法
user:BeanPostProcessor 接口 postProcessAfterInitialization方法
加载Spring配置文件结束
获取name属性:zhjb
程序结束
从结果进行分析,Bean的初始化顺序应该是
1.构造函数
2.初始化属性
3.如果实现了BeanFactoryAware 接口执行setBeanFactory方法
4..如果实现了InitializingBean 接口执行afterPropertiesSet方法
5.如果在配置文件中指定了init-method,那么执行该方法
6..如果实现了BeanFactoryPostProcessor 接口在 “new”其他类之前执行 postProcessBeanFactory 方法(通过这个方法可以改变配置文件里面的属性值的配置)
7.如果实现了BeanFactoryPostProcessor 接口,那么会在其他bean初始化方法之前执行postProcessBeforeInitialization 方法,之后执行postProcessAfterInitialization方法
感觉奇怪的地方就是没有执行destroy方法,目前还不知道原因在什么地方
分享到:
相关推荐
Spring 中控制 2 个 bean 的初始化顺序 在 Spring 框架中,控制多个 bean 的初始化顺序是一个常见的问题。本篇文章将详细介绍如何控制 2 个 bean 的初始化顺序,提供了多种实现方式,并分析了每种方式的优缺。 ...
9. **Bean初始化**: 最后,`initializeBean(beanName, exposedObject, mbd)`对创建好的Bean进行初始化,包括调用初始化方法(如果有`@PostConstruct`注解的方法),以及执行AOP代理等操作。 整个流程中,Spring...
下面将详细介绍如何通过不同方式定义Spring Bean的初始化和销毁回调方法。 **初始化回调方法** 1. **@PostConstruct注解** 这个Java标准注解用于标记一个方法,该方法将在对象完全构造后但在业务逻辑执行前被调用...
Spring Bean 加载过程是 Spring 框架中最核心的部分之一,涉及到 ApplicationContext 的初始化、Bean 的加载和注册等过程。在 Spring Boot 应用程序中,SpringApplication 负责加载和管理 Bean。 SpringApplication...
但是,这并不总是可靠的,因为Spring通常会延迟初始化Bean,除非显式要求或存在依赖关系。 2. **依赖注入**:Spring容器会根据Bean之间的依赖关系来决定实例化顺序。如果一个Bean依赖于另一个Bean,那么被依赖的...
Spring Bean的初始化和销毁实例详解 Spring Bean的初始化和销毁是Spring框架中一个非常重要的概念,它们都是Bean生命周期中不可或缺的一部分。在Spring框架中,我们可以使用多种方式来控制Bean的初始化和销毁,以下...
7. **Bean初始化**: 实例化完成后,Spring会执行Bean的初始化方法,包括调用`@PostConstruct`注解的方法。同时,如果Bean实现了InitializingBean接口,其`afterPropertiesSet()`方法也会被调用。 8. **初始化后...
这个问题可能是由多种原因引起的,涉及到Spring的初始化过程和容器的行为。以下是对该问题的详细分析: 首先,我们需要理解Spring Bean的生命周期。在Spring容器初始化时,它会根据配置加载Bean的定义,并根据需要...
- **XML配置**:在传统的Spring应用中,Bean的定义通常写在XML配置文件中,如`springbean-xml`中的配置。 - **注解配置**:使用`@Component`,`@Service`,`@Repository`和`@Controller`注解标记类,配合`@...
一旦XML配置加载到Spring容器中,容器将根据配置创建Bean实例,并按照定义进行初始化、依赖注入,最后完成Bean的生命周期管理。 10. **实践操作**: 在实际开发中,我们可以使用Eclipse的Spring插件来简化Bean...
在Spring框架中,Bean的加载顺序是一个重要的概念,它涉及到Spring容器如何管理和初始化Bean的过程。在"spring的bean加载顺序样例项目"中,我们可以通过分析和实验来深入理解这一主题。下面将详细阐述Spring Bean的...
本文将深入探讨Spring容器中Bean的初始化过程。 首先,Spring容器根据XML配置文件(如`applicationContext.xml`)来解析Bean的定义。在示例中,我们定义了一个名为`people`的Bean,它对应于`People`类。默认情况下...
在本篇文章中,我们将深入探讨Spring源码中关于Bean初始化的过程,特别是`finishBeanFactoryInitialization()`方法和`preInstantiateSingletons()`方法。 首先,`finishBeanFactoryInitialization(Confi...
Spring bean 一般通过配置文件和注解进行加载,如果要实现jar或class...测试示例中是spring boot 的部分代码,动态加载的内容为接口实现类,且初始化时加载本地的实现类,动态加载后改为非程序加载目录中的jar实现类。
3. 加载 bean:Spring 会加载 bean,并将其实例化。 4. 获取 bean:应用程序可以从容器中获取 bean 并使用它。 在加载 bean 的过程中,Spring 会使用 Resource 对象来表示 XML 文件,然后使用 ...
此外,Spring提供了一种名为BeanPostProcessor的接口,它允许我们自定义Bean实例化和初始化过程中的逻辑。通过实现`postProcessBeforeInitialization()`和`postProcessAfterInitialization()`方法,可以在Bean初始化...
此外,Spring提供了BeanPostProcessor接口,允许我们在Bean初始化前后进行自定义处理。通过实现`postProcessBeforeInitialization()`和`postProcessAfterInitialization()`方法,可以在Bean实例化和初始化之后进行...
Spring Bean是Spring IoC容器管理的对象,这些对象的生命周期、依赖关系以及初始化行为由Spring容器控制。实例化Spring Bean的方式多种多样,包括XML配置、注解配置以及Java配置等。而工厂方法是其中一种自定义实例...
初始化后可访问Spring管理的Bean