博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Spring @PostConstruct和@PreDestroy实例
阅读量:5052 次
发布时间:2019-06-12

本文共 2146 字,大约阅读时间需要 7 分钟。

在Spring中,既可以实现 或在bean配置文件中指定   在初始化和销毁回调函数。在这篇文章中,我们将介绍如何使用 @PostConstruct 和 @PreDestroy 注解来做同样的事情。

注:@PostConstruct和@PreDestroy 标注不属于 Spring,它是在J2EE库- common-annotations.jar。

@PostConstruct 和 @PreDestroy

一个 CustomerService Bean使用 @PostConstruct 和 @PreDestroy 注释
package com.yiibai.customer.services;import javax.annotation.PostConstruct;import javax.annotation.PreDestroy;public class CustomerService{	String message;		public String getMessage() {	  return message;	}	public void setMessage(String message) {	  this.message = message;	}		@PostConstruct	public void initIt() throws Exception {	  System.out.println("Init method after properties are set : " + message);	}		@PreDestroy	public void cleanUp() throws Exception {	  System.out.println("Spring Container is destroy! Customer clean up");	}	}
默认情况下,Spring不会意识到@PostConstruct和@PreDestroy注解。要启用它,要么注册“CommonAnnotationBeanPostProcessor”,要么在bean配置文件的<context:annotation-config />‘ 指定,

1. CommonAnnotationBeanPostProcessor

2. <context:annotation-config />

执行结果

package com.yiibai.common;import org.springframework.context.ConfigurableApplicationContext;import org.springframework.context.support.ClassPathXmlApplicationContext;import com.yiibai.customer.services.CustomerService;public class App {    public static void main( String[] args )    {    	ConfigurableApplicationContext context =     	  new ClassPathXmlApplicationContext(new String[] {"Spring-Customer.xml"});	    	CustomerService cust = (CustomerService)context.getBean("customerService");    	    	System.out.println(cust);    	    	context.close();    }}

输出结果

Init method after properties are set : im property messagecom.yiibai.customer.services.CustomerService@47393f...INFO: Destroying singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@77158a: defining beans [customerService]; root of factory hierarchySpring Container is destroy! Customer clean up
initIt()方法(@PostConstruct)被调用时,消息属性设置后 cleanUp() 方法(@PreDestroy)是在context.close()执行后被调用;
 
下载源代码 – 

转载于:https://www.cnblogs.com/soundcode/p/6367416.html

你可能感兴趣的文章
使用ionic cordova build android --release --prod命令打包报有如下错误及解决方法
查看>>
BZOJ 2338 HNOI2011 数矩形 计算几何
查看>>
关于页面<!DOCTYPE>声明
查看>>
【AS3代码】播放FLV视频流的三步骤!
查看>>
C++标准库vector使用(更新中...)
查看>>
cocos2d-x 2.2.6 之 .xml文件数据读取
查看>>
枚举的使用
查看>>
BZOJ 1531 二进制优化多重背包
查看>>
BZOJ 2324 (有上下界的)费用流
查看>>
python3基础06(随机数的使用)
查看>>
Zookeeper系列(二)特征及应用场景
查看>>
【HTTP】Fiddler(三)- Fiddler命令行和HTTP断点调试
查看>>
Spring Boot使用Druid和监控配置
查看>>
poi 处理空单元格
查看>>
Android 内存泄漏优化总结
查看>>
luogu4849 寻找宝藏 (cdq分治+dp)
查看>>
Spring Cloud微服务笔记(五)Feign
查看>>
C语言键盘按键列表
查看>>
Codeforces Round #374 (Div. 2)
查看>>
oracle数据类型
查看>>