I have a Bean that runs some threads with database connections. What can I do to make sure those connections are closed when the user navigates away? Can I define some form of "destruc开发者_开发百科tor" for JSF beans?
The @PreDestroy
annotation is what you're looking for.
精彩评论