`
anyeeye
  • 浏览: 145464 次
  • 来自: ...
社区版块
存档分类
最新评论

Spring中的destroy-method="close"- -

阅读更多
究竟Spring在何时调用destroy-method="close" 这个方法close()呢?终于借助JavaEye找到了答案,原来如果Spring不在Web Container或是EJB Container中的时候,这个方法还是需要我们自己来调用的,具体就是调用BeanFactory的destroySingletons()方法,文档上的“自动调用”这几个字真是害我不浅呀,原来自动也是通过Web Container或是EJB Container才可以自动,具体做法就是要实现ServletContextListener这个接口,Spring中已经有具体的实现了:

public class ContextLoaderListener implements ServletContextListener {

        private ContextLoader contextLoader;

        /**
        * Initialize the root web application context.
        */
        public void contextInitialized(ServletContextEvent event) {
                this.contextLoader = createContextLoader();
                this.contextLoader.initWebApplicationContext(event.getServletContext());
        }

        /**
        * Create the ContextLoader to use. Can be overridden in subclasses.
        * @return the new ContextLoader
        */
        protected ContextLoader createContextLoader() {
                return new ContextLoader();
        }

        /**
        * Return the ContextLoader used by this listener.
        */
        public ContextLoader getContextLoader() {
                return contextLoader;
        }

        /**
        * Close the root web application context.
        */
        public void contextDestroyed(ServletContextEvent event) {
                this.contextLoader.closeWebApplicationContext(event.getServletContext());
        }

}

当tomcat关闭的时候会自动调用contextDestroyed(ServletContextEvent event)这个方法。在看一下contextLoader的closeWebApplicationContext方法:

public void closeWebApplicationContext(ServletContext servletContext) throws ApplicationContextException {
                servletContext.log("Closing root WebApplicationContext");
                Object wac = servletContext.getAttribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE);
                if (wac instanceof ConfigurableApplicationContext) {
                        ((ConfigurableApplicationContext) wac).close();
                }
        }

AbstractApplicationContext.Close这个方法是要你自己调用的,在程序要结束的时候保证调用这个close方法,在这里的话就是由Listener来保证tomcat退出的时候调用close方法。
AbstractApplicationContext.Close的代码 :

public void close() {
                logger.info("Closing application context [" + getDisplayName() + "]");

                // Destroy all cached singletons in this context,
                // invoking DisposableBean.destroy and/or "destroy-method".
                getBeanFactory().destroySingletons();

                // publish corresponding event
                publishEvent(new ContextClosedEvent(this));
        }
最终还是调用到了getBeanFactory().destroySingletons(); 看来,没有容器,我们还是需要自己来搞定这个方法的调用的 !
分享到:
评论
3 楼 bk41 2011-11-25  
不明白···
2 楼 zhaotao_king 2010-08-03  
没看明白 
1 楼 ericcj 2008-03-04  
????????????

相关推荐

    spring1.2学习心得分享

    资源释放:<bean destroy-method=""/>仅对单例对象有效 (2)IoC概念 Inversion of Control 控制反转或控制转移 Don't Call Me,We will call you! 控制权:对象的创建和调用关系的控制. (3)DI概念 Dependecy ...

    spring学习心得

    资源释放:<bean destroy-method=""/>仅对单例对象有效 (2)IoC概念 Inversion of Control 控制反转或控制转移 Don't Call Me,We will call you! 控制权:对象的创建和调用关系的控制. (3)DI概念 Dependecy ...

    spring1.1开发理解

    资源释放:<bean destroy-method=""/>仅对单例对象有效 (2)IoC概念 Inversion of Control 控制反转或控制转移 Don't Call Me,We will call you! 控制权:对象的创建和调用关系的控制. (3)DI概念 Dependecy ...

    spring-jdbc-4.2.xsd.zip

    <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close"> <!-- 数据源配置 --> <!-- 配置JdbcTemplate --> <bean id="jdbcTemplate" class="org.springframework....

    spring Ioc容器配置

    destroy-method="close"> <property name="driverClassName"> <value>org.gjt.mm.mysql.Driver <property name="url"> <value>jdbc:mysql://localhost:3306/demo <property name="username"> ...

    JSP Spring中Druid连接池配置详解

    JSP Spring中Druid连接池配置 jdbc.properties url=jdbc:postgresql://***.... <bean id=dataSource class=com.alibaba.druid.pool.DruidDataSource init-method=init destroy-method=close> <!-- 基本属性 url、u

    spring applicationContext 配置文件

    <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource" destroy-method="close"> <property name="driverClass" value="oracle.jdbc.driver.OracleDriver"/> <property name="jdbcUrl" ...

    解析Tomcat下应用JMS开发技巧

    <bean id="derby-ds" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close"> <property name="driverClassName"> <value>org.apache.derby.jdbc.EmbeddedDriver <property name="url"> ...

    spring4+atomikos实现分布式事务

    <bean id="atomikosTransactionManager" class="com.atomikos.icatch.jta.UserTransactionImp" init-method="init" destroy-method="close"> <property name="transactionTimeout" value="300"/> <bean id=...

    spring + JTA + JOTM实现分布式事务

    <bean id="dataSource1" class="org.apache.commons.dbcp.BasicDataSource" init-method="init" destroy-method="close"> <!-- 数据源配置 --> <property name="driverClassName" value="com.mysql.jdbc.Driver"/>...

    springmvcmybatis

    -- <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close" lazy-init="false"> <property name="driverClassName" value="${jdbc.driver}" /> <property name="url" ...

    百知教育 — Spring系列课程 — 工厂高级特性1

    在本节Spring系列课程“工厂高级特性1”中,我们将深入探讨Spring框架中的一些核心概念和高级特性,尤其是关于对象创建、生命周期管理以及属性注入的关键点。以下是对这些主题的详细解析: 1. **对象创建**: - ...

    spring分布式事务提交atomikos 相关jar与示例

    Spring 分布式事务管理是大型企业级应用中不可或缺的一部分,它允许在多个数据库或服务之间进行一致性的数据操作。Atomikos 是一个开源的事务管理器,特别适用于 Spring 应用,提供了强大的分布式事务处理能力。这篇...

    开源框架spring详解-----spring对JDBC的支持

    <bean id="dataSource2" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close"> <property name="driverClassName" value="com.mysql.jdbc.Driver"/> <property name="url" value="jdbc:...

    struts2.3+hibernate3.6+spring3.1整合的纯xml配置的小项目

    destroy-method="close"> <property name="driverClassName" value="${jdbc.driverClassName}" /> <property name="url" value="${jdbc.url}" /> <property name="username" value="${jdbc.username}" /> ...

    spring 动态切换数据库

    <bean id="dataSource1" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close"> <!-- 配置数据库连接信息 --> <bean id="dataSource2" class="org.apache.commons.dbcp.BasicDataSource" ...

    基于注解的Spring多数据源配置和使用

    <bean id="dataSource1" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close"> <property name="driverClassName" value="${db1.driver}" /> <property name="url" value="${db1.url}" /> ...

    druid连接池依赖jar包

    <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource" init-method="init" destroy-method="close"> <property name="url" value="jdbc:mysql://localhost:3306/test?useSSL=false"/> ...

    使用Spring JDBC 案例

    <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close"> <property name="driverClassName" value="com.mysql.jdbc.Driver"/> <property name="url" value="jdbc:mysql...

    spring整合数据库连接的几种方式

    <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close"> <property name="driverClassName" value="com.mysql.jdbc.Driver"/> <property name="url" value="jdbc:mysql...

Global site tag (gtag.js) - Google Analytics