服务器之家:专注于VPS、云服务器配置技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - Java教程 - spring bean标签中的init-method和destroy-method详解

spring bean标签中的init-method和destroy-method详解

2023-04-16 18:33amcomputer Java教程

这篇文章主要介绍了spring bean标签中的init-method和destroy-method,在很多项目中,经常在xml配置文件中看到init-method 或者 destroy-method ,因此整理收集下,方便以后参考和学习,需要的朋友可以参考下

1 背景介绍

在很多项目中,经常在xml配置文件中看到init-method 或者 destroy-method 。因此整理收集下,方便以后参考和学习。可以使用 init-method 和 destroy-method 在bean 配置文件属性用于在bean初始化和销毁某些动作时。这是用来替代 InitializingBean和DisposableBean接口。

init-method 用于指定bean的初始化方法。 spring 容器会帮我们实例化对象,实例化对象之后,spring就会查找我们是否配置了init-method。如果在标签配置了init-method,spring就会调用我们配置的init-method 方法,进行bean的初始化。需要注意的是,构建方法先执行,执行完后就会执行 init-method 。

2 init-method

xml配置

?
1
2
<bean id="testService" class="com.test.TestService" init-method="myInit" destroy-method="myDestroy">
</bean>
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
public class TestService {
 
    public TestService(){
        System.out.println("实例化:TestService");
    }
 
    public void myInit(){
        System.out.println("初始化:TestService");
    }
 
    public void myDestroy(){
        System.out.println("销毁:TestService");
    }
}

测试

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
public class App
{
    public static void main( String[] args )
    {
        ConfigurableApplicationContext context =
        new ClassPathXmlApplicationContext(new String[] {"applicationContext.xml"});
    
        TestService cust = (CustomerService)context.getBean("testService");
        
        System.out.println("hhhhh");
        
        //context.close();
    }
}

输出:

实例化:TestService
初始化:TestService
hhhhh

3 destroy-method

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
public class App
{
    public static void main( String[] args )
    {
        ConfigurableApplicationContext context =
        new ClassPathXmlApplicationContext(new String[] {"applicationContext.xml"});
    
        TestService cust = (CustomerService)context.getBean("testService");
        
        System.out.println("hhhhh");
        
        context.close();
    }
}

spring上下文关闭时候,才会进行销毁。

输出:

实例化:TestService
初始化:TestService
hhhhh
销毁:TestService

4 总结

建议使用init-method 和 destroy-methodbean 在Bena配置文件,而不是执行 InitializingBean 和 DisposableBean 接口,也会造成不必要的耦合代码在Spring。

到此这篇关于spring bean标签中的init-method和destroy-method的文章就介绍到这了,更多相关spring  init-method和destroy-method内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!

原文链接:https://blog.csdn.net/qq_39463175/article/details/130163566

延伸 · 阅读

精彩推荐