In JBoss, is it possible to deploy a web application on two context paths? I\'d like same war instance available on / as well as /path , so, requests like \'/abc\' and \'/path/a
Since JBoss AS uses Tomcat as it's web container you can try to configure multiple context paths in context.xml.
See these links for further directions:
Configure Tomcat application context root with context.xml
http://community.jboss.org/wiki/Web-AppContextConfiguration
http://docs.jboss.org/jbossweb/2.1.x/config/context.html
Tomcat context.xml files, is there a hiearchy?