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 am working on eclipse gallileo,struts and tomcat. following is my web.xml file

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
  <display-name>streetmall</display-name>
 <context-param>
  <param-name>imagePath</param-name>
  <param-value>D:\\OrderID_images</param-value>
 </context-param>
 <listener>
  <listener-class>jaha.Customer.util.ApplicationScopeInit</listener-class>
 </listener>
 <servlet>
  <servlet-name>action</servlet-name>
  <servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
  <init-param>
   <param-name>config</param-name>
   <param-value>/WEB-INF/struts-config.xml</param-value>
  </init-param>
  <init-param>
   <param-name>debug</param-name>
   <param-value>3</param-value>
  </init-param>
  <init-param>
   <param-name>detail</param-name>
   <param-value>3</param-value>
  </init-param>
  <load-on-startup>1</load-on-startup>
 </servlet>
 <servlet>
  <servlet-name>action_tmp</servlet-name>
  <servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
  <init-param>
   <param-name>config</param-name>
   <param-value>/WEB-INF/struts-config.xml</param-value>
  </init-param>
  <init-param>
   <param-name>debug</param-name>
   <param-value>3</param-value>
  </init-param>
  <init-param>
   <param-name>detail</param-name>
   <param-value>3</param-value>
  </init-param>
  <load-on-startup>0</load-on-startup>
 </servlet>
 <servlet-mapping>
  <servlet-name>action</servlet-name>
  <url-pattern>*.do</url-pattern>
 </servlet-mapping>
 <welcome-file-list>
  <welcome-file>welcome.jsp</welcome-file>
 </welcome-file-list>

 <login-config>
  <auth-method>BASIC</auth-method>
 </login-config>

  <description>MySQL Test App</description>
  <resource-ref>
      <description>DB Connection</description>
      <res-ref-name>jdbc/TestDB</res-ref-name>
      <res-type>javax.sql.DataSource</res-type>
      <res-auth>Container</res-auth>
  </resource-ref></web-app>

My Problem is when I am startig my tomcat server, my lister class is not getting executed. even I have putted some System.out.println(). those messages are also not coming on console.. please help me how to get rid off this.

earlier i was getting class not found exception. but then I created new project and deploy it. now I am in this problem Thanks

public class ApplicationScopeInit implements ServletContextListener 
{

    public void contextInitialized(ServletContextEvent event) 
    {
        try
        {
            ClassLoader loader = Thread.currentThread().getContextClassLoader();

            System.out.println("Use context classloader to read states.properties");
            InputStream iStream = loader.getResourceAsStream("jaha/Customer/states.properties");
            Properties props = new Properties();
            System.out.println("Load the stream into the properties object directly");
            props.load(iStream);

            //Look up by key and load them into a ArrayList as NameValuePair collection
            Enumeration keyEnum = props.propertyNames();
            // Use a Sorted Set to hold the state names and values
            // Define an anonymous inner class to provide
            // the comparison algorithm to the TreeSet
            @SuppressWarnings("unchecked")
            Set stateSet = new TreeSet(
                    new Comparator() 
                    {
                        public int compare(Object a, Object b)
                        {
                            LabelValueBean nvpA = (LabelValueBean) a;
                            LabelValueBean nvpB = (LabelValueBean) b;

                            String valA = nvpA.getLabel();
                            String valB = nvpB.getLabel();
                            return valA.compareTo(valB);
                        }
                    }
            );

            LabelValueBean nvp = null;
            String keyName = null;
            String label = null;
            while (keyEnum.hasMoreElements())
            {
                keyName = (String) keyEnum.nextElement();
                label = props.getProperty(keyName);
                nvp = new LabelValueBean(label, keyName);
                stateSet.add(nvp);
            }

            System.out.println("Get ServletContext and set the properties as a application scope object");
            ServletContext context = event.getServletContext();
            context.setAttribute("STRUTS_EXAMPLE_STATES", stateSet);


            //Load Carriers - FedEx, UPS etc..
            List carrierList = new ArrayList();
            carrierList.add(new LabelValueBean("UPS", "UPS"));
            carrierList.add(new LabelValueBean("USPS", "USP"));
            carrierList.add(new LabelValueBean("FedEx", "FDX"));

            context.setAttribute("STRUTS_EXAMPLE_CARRIERS",carrierList);
            //.setAttribute("STRUTS_EXAMPLE_CARRIERS",carrierList);
        }
        catch (IOException ioe)
        {
            ioe.printStackTrace();      
        }
        try{
            System.out.println("Populating category on server startup");
            HashMap<String, ArrayList<CategorydetailObject>>  hm= CategoryManager.PopulateCategory();
            ServletContext context = event.getServletContext();

            context.setAttribute("PRODUCTS", hm);



        }
        catch(Exception e)
        {
            System.out.println("$$$$$$$$$$$$$$$$$$$$$ PROBLEM IN INITIALIZATION ALL PARAMETERS");

        }
    }

    public void contextDestroyed(ServletContextEvent event) 
    {
        event.getServletContext().removeAttribute("STRUTS_EXAMPLE_STATES");
        event.getServletContext().removeAttribute("STRUTS_EXAMPLE_CARRIERS");
        event.getServletContext().removeAttribute("PRODUCTS");

    }

}
share|improve this question
can we see your listener class? – jeff Oct 15 '11 at 6:21
Hi thks, I have added class plesase see. – Abhishek Oct 15 '11 at 6:39
I used your setup and I'm able to see my message printing when the server starts up. Are you sure the server is starting properly? There are no stacktraces? – jeff Oct 15 '11 at 6:58
I did not find any stacktrace in console. even my tomcat is up properly. i can see my classname "Applicationscopeinit" in console also. – Abhishek Oct 15 '11 at 7:10
Did you solve the issue? I am having the same problem. Thanks. – klyngbaek Jan 18 at 21:29

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.