热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

开发笔记:(002)spring容器中bean初始化销毁时执行的方法及其3种实现方式

篇首语:本文由编程笔记#小编为大家整理,主要介绍了(002)spring容器中bean初始化销毁时执行的方法及其3种实现方式相关的知识,希望对你有一定的参考价值。

篇首语:本文由编程笔记#小编为大家整理,主要介绍了(002)spring容器中bean初始化销毁时执行的方法及其3种实现方式相关的知识,希望对你有一定的参考价值。



spring容器中bean初始化或者销毁时会执行一些方法,有3种实现方式。

1、实现InitializingBean、DisposableBean接口,在bean的属性设置后和bean销毁时分别执行afterPropertiesSet和destroy方法

  pom.xml文件





xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
com.edu.spring
spring
1.0.0
spring

http://www.example.com

UTF-8
1.8
1.8




org.springframework
spring-context
4.3.2.RELEASE




View Code

  Cat.java



package com.edu.spring;
import org.springframework.beans.factory.DisposableBean;
import org.springframework.beans.factory.InitializingBean;
public class Cat implements InitializingBean,DisposableBean{
@Override
public void afterPropertiesSet() throws Exception {
// TODO Auto-generated method stub
System.out.println("-----------afterPropertiesSet--------------");
}
@Override
public void destroy() throws Exception {
// TODO Auto-generated method stub
System.out.println("-----------destroy--------------");
}
}


View Code

  MyConfig.java



package com.edu.spring;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
public class MyConfig {

@Bean
public Cat createCat(){
return new Cat();
}
}


View Code

  App.java



package com.edu.spring;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
public class App
{
public static void main( String[] args )
{
AnnotationConfigApplicationContext context
=new AnnotationConfigApplicationContext(MyConfig.class);
System.out.println(context.getBean(Cat.
class));
context.close();
}
}


View Code

  运行结果如下:

 2、在@Bean注解中用initMethod和destroyMethod两个属性指定实体类中的两个方法,这两个方法分别在bean初始化和销毁时候执行

  Dog.java



package com.edu.spring;
public class Dog {
public void init(){
System.out.println(
"----------Dog init---------");
}

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


View Code

  MyConfig.java



package com.edu.spring;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
public class MyConfig {

@Bean(initMethod
="init",destroyMethod="destroy")
public Dog createDog(){
return new Dog();
}
}


View Code

  App.java



package com.edu.spring;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
public class App
{
public static void main( String[] args )
{
AnnotationConfigApplicationContext context
=new AnnotationConfigApplicationContext(MyConfig.class);
System.out.println(context.getBean(Dog.
class));
context.close();
}
}


View Code

  运行结果如下:

 3、在实体类中方法上面分别添加@PostConstruct和@PreDestroy注解,分别指定初始化和销毁方法

  Animal.java



package com.edu.spring;
import javax.annotation.PostConstruct;
import javax.annotation.PreDestroy;
public class Animal {
@PostConstruct
public void initial(){
System.out.println(
"-------initial---------");
}

@PreDestroy
public void close(){
System.out.println(
"---------close---------");
}
}


View Code

  MyConfig.java



package com.edu.spring;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
public class MyConfig {

@Bean
public Animal createAniaml(){
return new Animal();
}
}


View Code

  App.java



package com.edu.spring;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
public class App
{
public static void main( String[] args )
{
AnnotationConfigApplicationContext context
=new AnnotationConfigApplicationContext(MyConfig.class);
System.out.println(context.getBean(Animal.
class));
context.close();
}
}


View Code

  运行结果如下:

 

 



推荐阅读
author-avatar
静静静静静静妹儿_
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有