tags:

views:

344

answers:

1

I'm currently experiencing problems with a JPATransactionManager in a J2SE application.

The latest request was not properly saved in the database (surely a problem of cache).

This seems to be normal because the exit of the program does not seem to "cleanly" exit all Bean of the spring application context.

Do you know if there's a method of a clean shutdown a Spring context before exiting ?

Thank you in advance.

+1  A: 

Checkout Spring Reference manual on this topic.

Basically you need to call registerShutdownHook() on the application context.

DJ
Thank you. It works great !It not solved me the problem of transaction but all object seems to be cleanly close.
X-Blaster