如何在Jsp或Servlet

时间:2015-06-29 08:51:47

标签: java jsp servlets

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文件:

 <display-name>JSPAPP</display-name>
  <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
  </welcome-file-list>
</web-app>

当我使用其工作正常运行应用程序http://localhost:8080/JSPAPP/index.jsp但我已将此URL更改为http://localhost:8080/MyFirstApp/index.jsp,即我必须将JSPAPP更改为MyFirstApp我将如何更改请告诉我。

1 个答案:

答案 0 :(得分:1)

1)如果您使用eclipse运行应用程序,则从项目“Properties - &gt; Web Project Settings - &gt; Context Root”更改上下文根。

2)如果要将应用程序部署到服务器(比如tomcat),请将war文件重命名为所需的上下文根目录。