XML pom.xml 配置
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.example</groupId> <artifactId>spring-core</artifactId> <version>1.0-SNAPSHOT</version> <dependencies> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>4.3.11.RELEASE</version> </dependency> </dependencies> </project>
配置类
@Configuration @ComponentScan("com.core") @PropertySource("classpath:application.properties") public class MainConfig { }
application.properties
spring.core.profile=prod
启动类
public static void main(String[] args) { AnnotationConfigApplicationContext applicationContext = new AnnotationConfigApplicationContext(MainConfig.class); UserService userService = applicationContext.getBean(UserService.class); System.out.println("获取到bean:"+userService); applicationContext.close(); }
UserService
@Service public class UserService implements InitializingBean , DisposableBean { @Value("${spring.core.profile}") private String profile; public UserService(){ System.out.println("对象实例化"+this.toString()); } @PostConstruct public void postConstruct(){ System.out.println("初始化->postConstruct..."+this.toString()); } @PreDestroy public void preDestory(){ System.out.println("准备销毁->preDestory..."+this.toString()); } //属性设置完之后 public void afterPropertiesSet() throws Exception { this.profile = "prod_modify"; System.out.println("InitializingBean->afterPropertiesSet...."+this.toString()); } //applicationContext销毁之前 public void destroy() throws Exception { System.out.println("准备销毁->DisposableBean->destroy...."); } @Override public String toString() { return "UserService{" + "profile='" + profile + '\'' + '}'; } }
spring bean的初始化有好几种方式
1 @PostConstruct
2. init-method
3.实现InitializingBean接口
输出结果
对象实例化UserService{profile='null'} 初始化->postConstruct...UserService{profile='prod'} InitializingBean->afterPropertiesSet....UserService{profile='prod_modify'} 获取到bean:UserService{profile='prod_modify'} 准备销毁->preDestory...UserService{profile='prod_modify'} 准备销毁->DisposableBean->destroy....
结论:
1. 首先实例化对象UserService(属性未赋值为null)
2.在执行@PostConstruct 注解标注的初始化方法(初始化之前已经给对象属性赋值完毕)
3.在回调InitializingBean接口的afterPropertiesSet方法 (初始化方法以及运行,可以进一步修改对象的属性值)
4.获取到bean
5.spring上线文销毁 先调用 @preDestory注解标注的方法 在回调DisposableBean接口的destroy方法
注:
实例化和初始化的区别
1. 实例化是new 一个对象出来 会调用构造方法
2. 初始化是调用new出来对象的初始化方法
扩展点:
除了上面的几种方式spring还提供了修改bean的一种方式
是写BeanPostProcessor接口 , 改接口是针对spring容器中所有bean的修改
public Object postProcessBeforeInitialization(Object bean, String beanName) throws BeansException { return null; } public Object postProcessAfterInitialization(Object bean, String beanName) throws BeansException { return null; }
会实现这2个方法,
第一个参数就是srping容器中每个对象
第二个参数是spring容器中每个对象的名字
拿到这些对象后可以做一些自己想做的事
相关推荐
在Spring框架中,`@PostConstruct` 是一个用于标记初始化方法的注解,该方法会在对象完全初始化并准备好服务之前调用。然而,在Spring定时任务(如使用`@Scheduled`注解的方法)中,如果遇到`@PostConstruct`被多次...
Spring初始化参数的顺序是: 1. 对象初始化——构造方法 2. 对象初始化——`@PostConstruct`注解的方法 3. 对象初始化——实现了`InitializingBean`接口的`afterPropertiesSet`方法 4. 对象初始化——自定义的`init`...
在Spring框架中,Bean的实例化顺序是一个关键概念,它涉及到如何管理和协调多个Bean的创建与依赖关系。这里,我们主要探讨的是Spring如何通过其IoC(Inversion of Control)容器来实例化Bean,并理解其背后的逻辑。 ...
当Spring容器创建并初始化Bean时,会寻找带有@PostConstruct注解的方法并执行。 2. **InitializingBean接口** 如果一个Bean实现了Spring的InitializingBean接口,那么它必须重写`afterPropertiesSet()`方法。此...
在Spring框架中,加载顺序是理解应用程序启动过程的关键部分,涉及到bean的实例化、初始化以及依赖注入等多个环节。本文将详细探讨Spring加载顺序,并结合`@PostConstruct`、`构造方法`以及`@Autowired`等关键注解...
在这里,我们使用 @PostConstruct 和 @PreDestroy 注解来指定组件的初始化和销毁方法,这样可以在组件的生命周期中执行特定的操作。 @Component、@Repository、@Service、@Controller 等注解是 Spring 框架中常用的...
实例化完成后,Spring会执行Bean的初始化方法,包括调用`@PostConstruct`注解的方法。同时,如果Bean实现了InitializingBean接口,其`afterPropertiesSet()`方法也会被调用。 8. **初始化后处理器**: 如果Bean...
初始化顺序为:首先调用`@PostConstruct`注解的方法,然后是`InitializingBean`的`afterPropertiesSet()`方法,最后是XML配置的`init-method`。 此外,Spring还提供了`BeanPostProcessor`接口,它允许自定义在Bean...
在"sample"这个压缩包项目中,我们可以创建多个Bean,通过观察它们的初始化顺序来验证上述理论知识。通过日志记录或者断点调试,我们可以更直观地了解Spring如何管理Bean的生命周期。理解Bean的加载顺序对于优化应用...
例如,你可以在这个接口的实现中注册自定义Bean、设置环境变量或者改变Bean的初始化顺序等。这是一个高级的自定义功能,对于有特殊需求的复杂应用非常有用。 下面是一个简单的ApplicationContextInitializer实现...
当Spring初始化一个Bean时,会尝试自动匹配类型进行装配。为了使@Autowired生效,需要在配置文件中添加`<bean class="org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor" />`。...
@PostConstruct注解的方法在整个Bean初始化中的执行顺序是:Constructor(构造方法) -> @Autowired(依赖注入) -> @PostConstruct(注释的方法)。 静态方法中调用Spring注入 在静态方法中调用Spring注入需要使用特殊...
此外,还可以通过`@PostConstruct`和`@PreDestroy`注解来标记初始化和销毁方法。 2. **扩展接口**: - `InitializingBean`:这个接口包含一个`afterPropertiesSet()`方法,当所有依赖属性被设置完成后,Spring容器...
- `@PostConstruct`标记的方法会在Bean初始化完成后,由Spring容器调用执行。这是一个在依赖注入之后,但在Bean可以正常使用之前进行额外初始化操作的理想场所。 - 示例中,如果一个子类需要注入父类中的属性,而...
在Spring框架中,BeanPostProcessor(BPP)是一个至关重要的接口,它允许用户自定义处理在Spring IoC容器中管理的bean的初始化前后过程。这个接口提供了两个核心的方法:`postProcessBeforeInitialization()` 和 `...
* 作用:定义 Bean 初始化及销毁时的顺序。 * 解释:@DependsOn 注解用于定义 Bean 的依赖关系,例如某个 Bean 的初始化需要依赖其他 Bean。 @Primary * 作用:自动装配时当出现多个 Bean 候选者时,被注解为候选...
当你需要在Spring容器中创建一个对象,但其创建过程复杂或者需要额外的初始化工作时,FactoryBean就派上用场了。通过实现FactoryBean接口,你可以控制实例化对象的具体过程,包括任何复杂的依赖注入或者初始化步骤。...
Spring支持使用Java标准注解`@PostConstruct`和`@PreDestroy`来标记初始化和销毁方法。当一个Bean被实例化后,Spring会查找带有`@PostConstruct`注解的方法,并在所有依赖注入完成后调用这个方法。同样,在Bean将要...
此外,SpringBoot还支持通过`@PostConstruct`注解标记的方法来执行初始化代码,这些方法会在Bean实例创建完成后,但在依赖注入完成之前调用。另外,对于Web应用,`ApplicationRunner`接口与`CommandLineRunner`类似...
在Spring Boot框架中,Bean是核心概念之一,它代表了应用程序中的对象,这些对象由Spring容器管理,包括它们的创建、初始化、装配以及销毁。理解并熟练使用Bean对于开发高效且可维护的Spring Boot应用至关重要。本文...