I want to change the context of my deployed web application. Currently it is accessed by the url www.app.mysite.com/dashboard
But i want to change it to www.app.mysite.com/application/dashboard
I went through post to change the root context here and here. But the thing is that i have other applications running to on that server which are accessed by
www.app.mysite.com/ps
www.app.mysite.com/ls
If i change the context path in server.xml will it affect context of my other application ?I dont want the context to change for above mentioned apps, but i want to change it for my particular application dashboard.
Is there any way to change the context of any particular application, by adding any thing to web.xml or other?