package com.idol;

public class Auditorium {       
Auditorium(){
}  
public void turnOnLights() {  
    System.out.println("Lights are turned on"); 
}  
public void turnOffLights(){  
    System.out.println("Lights are turned off");
}  

}

For xml context I have:

 <bean id="Auditorium" class="com.idol.Auditorium" init-method="turnOnLights" destroy-method="turnOffLights"/>

Testing:

ApplicationContext auditorium =
        new ClassPathXmlApplicationContext("ApplicationContextVer6.xml"); 

auditorium.getBean("Auditorium");

I get:

Does only print "Lights are turned on" and doesn't print "Lights are turned off". I though that before destroying the bean it should invoke the destroy-method too, what am I missing or not getting? (I have no errors in log, just in case)

Thanks

link|improve this question

71% accept rate
feedback

2 Answers

up vote 4 down vote accepted

Try it like this:

final ConfigurableApplicationContext auditorium =
        new ClassPathXmlApplicationContext("ApplicationContextVer6.xml");
auditorium.getBean("Auditorium");
auditorium.close(); // thx Nathan

// auditorium.refresh() will also turn the lights off
// before turning them on again
link|improve this answer
Doesn't work the lights are still on :-) – Aubergine Aug 4 '11 at 16:11
That I understood, but the destroy method still is not called.. – Aubergine Aug 4 '11 at 16:13
@Aubergine You're right. But this version works. – Sean Patrick Floyd Aug 4 '11 at 16:21
@Nathan. Grr, yes, that would have been perfect. Write it as an answer and I'll upvote. – Sean Patrick Floyd Aug 4 '11 at 16:22
@Sean, thanks, but you go ahead – Nathan Hughes Aug 4 '11 at 16:24
show 1 more comment
feedback

You cannot observe destroy-method working, because bean will be available in Spring context all the time. I think that when you will close/destroy your application context, then all beans instantiated from it should be destroyed. Take a look at the close() and destroy() methods at the org.springframework.context.support.AbstractApplicationContext class.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.