配置文件如下:
<bean name="chineseSteer" class="com.ly.spring.action.Chinese">
<property name="serivce" ref="steerService"></property>
</bean>
public class Chinese implements InitializingBean,DisposableBean{
public void show() {
serivce.chop();
}
@Override
public void destroy() throws Exception {
System.out.println("destroy()");
}
@Override
public void afterPropertiesSet() throws Exception {
System.out.println("afterPropertiesSet()");
}
你的Test类或者是他的基类有 在@After调用 context的destroy方法吗
不会吧,有销毁方法