You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by Raghuveer <ra...@infotechsw.com> on 2008/04/02 18:07:41 UTC

application folder name in webapps folder in tomcat through java servletlistner

I have HelloServlet ,HelloServletContextListener in 3 different applications
in tomcat

<tomcat_home>webapps\AppHello1
<tomcat_home>webapps\AppHello2
<tomcat_home>webapps\AppHello3

How to identify in my listner class what is the folder/context name in my
server.

public void contextInitialized(ServletContextEvent ce) {
contextName = ce.getServletContext().getServletContextName();
}


This code is working only if i have
<display-name>AppHello1</display-name> in web.xml.
If there is no <display-name> in web.xml then above code in listner class is
returning null.

Is there facility to know application folder name in webapps folder in
tomcat.