org.frameworkset.spi.DisposableBean Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bboss-core Show documentation
Show all versions of bboss-core Show documentation
bboss is a j2ee framework include aop/ioc,mvc,persistent,taglib,rpc,event ,bean-xml serializable and so on.http://www.bbossgroups.com
package org.frameworkset.spi;
/**
*
* Title: DisposableBean.java
* Description:
* bboss workgroup
* Copyright (c) 2007
* @Date 2010-4-21 下午11:34:34
* @author biaoping.yin
* @version 1.0
*
*/
public interface DisposableBean
{
/**
* Invoked by a BeanFactory on destruction of a singleton.
* @throws Exception in case of shutdown errors.
* Exceptions will get logged but not rethrown to allow
* other beans to release their resources too.
*/
public void destroy() throws Exception;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy