Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can i load a class on at startup in Tomcat ? I saw "load-on-startup" tag for web.xml file, but can i use it and how should I write my class ?

EDIT: ok, but how can i implements this class and xml is it right ?
< servlet-name>??< /servlet-name>
< servlet-class>??< /servlet-class>
< load-on-startup>10< /load-on-startup>

share|improve this question

1 Answer

up vote 14 down vote accepted

Those are meant to specify the loading order for servlets. However, servlets are more meant to control, preprocess and/or postprocess HTTP requests/responses while you sound like to be more looking for a hook on webapp's startup. In that case, you rather want a ServletContextListener.

public class Config implements ServletContextListener {
    public void contextInitialized(ServletContextEvent event) {
        // Do your thing during webapp's startup.
    }
    public void contextDestroyed(ServletContextEvent event) {
        // Do your thing during webapp's shutdown.
    }
}

which you register in web.xml as follows:

<listener>
    <listener-class>com.example.Config</listener-class>
</listener>

See also:

share|improve this answer
If I want to startup my application with an specific servlet (which is not possible to be a static page) is this here the only way? I would use your ContextListener with an forward? – lony May 24 '12 at 13:03

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.