https://bz.apache.org/bugzilla/show_bug.cgi?id=62895

richard.gang....@gmail.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 OS|                            |All

--- Comment #1 from richard.gang....@gmail.com ---
My Servlet is very simple, the Servlet just override the init(ServletConfig)
method

public class TimerServlet extends HttpServlet
{
        public void init(ServletConfig config)throws ServletException
        {
                super.init(config);
                Timer t = new Timer(1000,new ActionListener()
                {
                        public void actionPerformed(ActionEvent e)
                        {
                                System.out.println(new Date());
                        }
                });
                t.start();
        }
}

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to