Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In the destroy method of a spring bean I want to execute some queries to clean up some stuff in the database. Spring doesn't seem to allow this by any means I can find.

The error is always something like:

Invocation of destroy method failed on bean with name 'someBean': org.springframework.beans.factory.BeanCreationNotAllowedException: Error creating bean with name 'transactionManager': Singleton bean creation not allowed while the singletons of this factory are in destruction (Do not request a bean from a BeanFactory in a destroy method implementation!)

The following will tell spring to call shutdownDestroy after the bean is no longer needed. But, I get the above error when trying to use transactions.

<bean id="someId" name="someName" class="someClass"
 destroy-method="shutdownDestroy"/>

The same is true when I enable common lifecycle annotations using:

<bean class="org.springframework. ... .CommonAnnotationBeanPostProcessor"/>

and then mark the method with @PreDestroy. That method can't use transactions either.

Is there any way to do this?

EDIT: Thanks! I had the bean implement SmartLifecycle and adding the following and it works very nicely.

private boolean isRunning = false;

@Override
public boolean isAutoStartup() {return true;}

@Override
public boolean isRunning() {return isRunning;}

/** Run as early as possible so the shutdown method can still use transactions. */
@Override
public int getPhase() {return Integer.MIN_VALUE;}

@Override
public void start() {isRunning = true;}

@Override
public void stop(Runnable callback) {
    shutdownDestroy();
    isRunning = false;
    callback.run();
}

@Override
public void stop() {
    shutdownDestroy();
    isRunning = false;
}
share|improve this question
I'm assuming your method shutdownDestroy() has the @Transactional annotation? How are you executing your queries in that method? I'm trying to do this with an EntityManager autowired by spring. The autowiring works fine but when I try to execute my query I get the: javax.persistence.TransactionRequiredException: Executing an update/delete query – mag382 Apr 24 at 20:11

1 Answer

up vote 2 down vote accepted

Interesting Question. I'd say you should be able to do it by letting your bean implement SmartLifeCycle.

That way, if your int getPhase(); method returns Integer.MIN_VALUE, it will be among the first to be called when the ApplicationContext shuts down.

Reference:

share|improve this answer
Soooo someone downvotes this answer even though no one has a better idea. Hmmmm. – Sean Patrick Floyd Feb 5 at 7:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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