index.jsp
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<%="This is First App" %>
</body>
</html>
web.xml file :
<display-name>JSPAPP</display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
</web-app>
when i run the app http://localhost:8080/JSPAPP/index.jsp using its work fine But i have change this URL to http://localhost:8080/MyFirstApp/index.jsp i.e i have to change JSPAPP to MyFirstApp how i will change please tell me .