创建Localhost / projectName主页URL

时间:2012-11-07 03:10:35

标签: java jsp

我不知道如何开始这个,但我目前有一个简单的应用程序,其主页网址为

localhost:8080/projectName/homePage.jsp

但是,我希望如此

localhost:8080/projectName/ 

OR

localhost:8080/projectName

将我发送到homePage.jsp。

我已经读过在其他项目中由eclipse创建的index.jsp,但似乎还没有为我做过 - 我需要创建它吗?我没有使用web.xml,而是依靠@WebServlet进行连线。

2 个答案:

答案 0 :(得分:0)

有两种方法可以做到这一点。 1.在web.xml中添加一个条目,如下所示

 <welcome-file-list>
    <welcome-file>homepage.jsp</welcome-file>
</welcome-file-list>

2。在WebContent文件夹中创建一个index.jsp文件,并将请求转发给homePage.jsp

答案 1 :(得分:0)

根据以下帖子,注释没有这种方法:

Servlet 3.0 annotations <welcome-file>