Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
621 views
in Technique[技术] by (71.8m points)

lifecycle - How can i remove a singleton spring bean from ApplicationContext?

I want to develop a module control system so that every spring bean can be managed by my own LifeCycle Controller.

But I can not figure out how can I remove a singleton spring bean out of ApplicationContext.

That may be an interesting problem , can you help me to resolve ?

Question&Answers:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Removing definition does both : removing definition and destroying (removing all container references on that bean) corresponding Singleton :

((BeanDefinitionRegistry) beanFactory).removeBeanDefinition("myBean");

If you just need to remove the singleton then :

((DefaultListableBeanFactory) beanFactory).destroySingleton("myBean");

The latter way may be especially useful if you just registered singleton but haven't defined any bean definitions, i.e.

((SingletonBeanRegistry) beanFactory).registerSingleton("myBean", myBeanInstance); 

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...