EJB @PrePassivate

Javadoc

The @PrePassivate annotation lets you define a method to be called just before a stateful session bean will be taken out of service.

  @Stateful
  public class MySessionBean {
    @PrePassivate
    public void runMeBeforePassivatingMe()
    {
    }
  }