Re: Does Tomcat 6.0.x support Life Cycle Annotations?
all @PreDestroy on a Bean, since only the JVM keeps track of who is > holding > a reference to it. > > "gotobarry" <[EMAIL PROTECTED]> wrote in message > news:[EMAIL PROTECTED] >> >> public class MyBean { >> @PostConstruct >>public v
Does Tomcat 6.0.x support Life Cycle Annotations?
public class MyBean { @PostConstruct public void initialize() { //init code } @PreDestroy public void shutdown() { //shutdown code | } If so do you have an example? Cheers Barry -- View this message in context: http://www.nabble.com/Does-Tomcat-6.0.x-support