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.

I want to load a class on tomcat startup which will actually initialize variables in other classes.

i have edited the appName/WEB-INF/web.xml as follows

<servlet>
    <servlet-name>LoadConfigurations</servlet-name>
    <servlet-class>Loader.LoadConfigurations</servlet-class>
    <init-param>
      <param-name>env</param-name>
      <param-value>dev</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
</servlet>

and i have placed my servlet LoadConfiguration in /appName/WEB-INF/classes

how do i check whether the servlet is beig called or not ? because when i try to display the value from initialized class it returns null

share|improve this question

2 Answers

There are two problems:

  1. The compiled class needs to go into a folder structure base on the package name. In your case a folder called Loader

  2. In order to call the servlet, you need to add a <ServletMapping> to your web.xml file

share|improve this answer

The container should call your servlets init() method when the servlet is initialized. Implement/override that method and try writing something to the log from there.

share|improve this answer

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.