您的位置:首页 > 编程语言 > Java开发

06-SpringBoot——Spring常用配置-Bean的初始化和销毁

2017-08-01 07:40 706 查看

Spring常用配置-Bean的初始化和销毁

【博文目录>>>】

【项目源码>>>】

【Bean的初始化和销毁】

在实际开发的时候,经常会遇到在Bean 在使用之前或者之后做些必要的操作, Spring对Bean 的生命周期的操作提供了支持。在使用Java 配置和注解配置下提供如下两种方式:

(1) Java 配置方式:使用@Bean 的initMethod 和destroyMethod (相当于xml 配置的init-method 和destory-method )。
(2) 注解方式:利用JSR-250 的@PostConstruct 和@PreDestroy


【代码实现】

package com.example.spring.framework.prepost;

/**
* Author: 王俊超
* Date: 2017-07-11 07:18
* All Rights Reserved !!!
*/
public class BeanWayService {
public void init() {
System.out.println("@Bean-init-method");
}

public BeanWayService() {
System.out.println("初始化构造函数-BeanWayService");
}

public void destroy() {
System.out.println("@Bean-destory-method");
}
}


package com.example.spring.framework.prepost;

import javax.annotation.PostConstruct;
import javax.annotation.PreDestroy;

/**
* Author: 王俊超
* Date: 2017-07-11 07:19
* All Rights Reserved !!!
*/
public class JSR250WayService {
@PostConstruct //1 在构造函数执行完之后执行。
public void init() {
System.out.println("jsr250-init-method");
}

public JSR250WayService() {
super();
System.out.println("初始化构造函数-JSR250WayService");
}

@PreDestroy //2 在Bean 销毁之前执行。
public void destroy() {
System.out.println("jsr250-destory-method");
}

}


package com.example.spring.framework.prepost;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;

/**
* Author: 王俊超
* Date: 2017-07-11 07:19
* All Rights Reserved !!!
*/
@Configuration
@ComponentScan("com.example.spring.framework.prepost")
public class PrePostConfig {

// initMethod 和destroyMethod 指定BeanWayService 类的init 和destroy
// 方法在构造之后、Bean 销毁之前执行。
@Bean(initMethod = "init", destroyMethod = "destroy")
BeanWayService beanWayService() {
return new BeanWayService();
}

@Bean
JSR250WayService jsr250WayService() {
return  new JSR250WayService();
}
}


package com.example.spring.framework.prepost;

import org.springframework.context.annotation.AnnotationConfigApplicationContext;

/**
* Author: 王俊超
* Date: 2017-07-11 07:22
* All Rights Reserved !!!
*/
public class Main {
public static void main(String[] args) {
AnnotationConfigApplicationContext context =
new AnnotationConfigApplicationContext(PrePostConfig.class);

BeanWayService beanWayService = context.getBean(BeanWayService.class);
JSR250WayService jsr250WayService = context.getBean(JSR250WayService.class);

context.close();
}
}


【运行结果】

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: