Spring 提供3种方法实现Bean初始化回调,含Spring中@PostConstruct注解的配置
作者:互联网
一、使用接口实现Bean初始化回调
org.springframework.beans.factory.InitializingBean 接口提供了以下方法:
void afterPropertiesSet() throws Exception;
实现代码如下:
@Override public void afterPropertiesSet() throws Exception { System.out.println("其次,调用InitializingBean的 afterPropertiesSet方法......"); }
二、 配置XML实现Bean初始化回调
可以通过 init-method 属性指定 Bean 初始化后执行的方法。
<bean id="helloWorld" class="com.clzhang.spring.demo.HelloWorld" scope="prototype" init-method="init2"> <property name="message" value="Hello World!" /> </bean>
同时加入实现代码:
public void init2() { System.out.println("最后,调用XML配置文件中指定的初始化方式......"); }
三、 使用注解实现Bean初始化回调
使用 @PostConstruct 注解标明该方法为 Bean 初始化后的方法。
@PostConstruct public void init1() { System.out.println("最先调用@PostConstruct方式的初始化方法......" ); }
四、@PostConstruct 注解的配置
1. 在配置文件中使用 context 命名空间之前,必须在 <beans> 元素中声明 context 命名空间
<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.springframework.org/schema/beans" xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">
2. 然后才是引用
<context:annotation-config/>
3. 需要在项目中引用若干Spring包
包括但不限于:commons-logging-1.2.jar,以及常用Spring包。
五、全部代码参考如下
1 .实体Bean
package com.clzhang.spring.demo; import org.springframework.beans.factory.InitializingBean; import javax.annotation.PostConstruct; public class HelloWorld implements InitializingBean { private String message; public void setMessage(String message) { this.message = message; } public void getMessage() { System.out.println("message : " + message); } @Override public void afterPropertiesSet() throws Exception { System.out.println("其次,调用InitializingBean的 afterPropertiesSet方法......"); } @PostConstruct public void init1() { System.out.println("最先调用@PostConstruct方式的初始化方法......" ); } public void init2() { System.out.println("最后,调用XML配置文件中指定的初始化方式......"); } }View Code
2. 调用者
package com.clzhang.spring.demo; import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; public class MainApp { public static void main(String[] args) { ApplicationContext context = new ClassPathXmlApplicationContext("Beans.xml"); HelloWorld objA = (HelloWorld) context.getBean("helloWorld"); objA.setMessage("对象A"); objA.getMessage(); HelloWorld objB = (HelloWorld) context.getBean("helloWorld"); objB.getMessage(); } }View Code
3. Bean.xml配置
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.springframework.org/schema/beans" xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd"> <bean id="helloWorld" class="com.clzhang.spring.demo.HelloWorld" scope="prototype" init-method="init2"> <property name="message" value="Hello World!" /> </bean> <context:annotation-config/> </beans>
六、输出如下
本文参考:
http://c.biancheng.net/spring/bean-life-cycle.html
标签:初始化,Spring,void,PostConstruct,Bean,println,public 来源: https://www.cnblogs.com/nayitian/p/14993907.html