`
燕子~~
  • 浏览: 106773 次
  • 性别: Icon_minigender_2
  • 来自: 北京
社区版块
存档分类
最新评论

web.xml 文件中的一个标签

阅读更多

今天遇到一个问题:

在IE里面输入url:http://127.0.0.1/newDcx  报404错误;但是输入http://127.0.0.1/newDcx/login.action 就没错。原因是web.xml里面少了一段

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

内容。

index.jsp内容:

<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
<%-- Redirected because we can't set the welcome page to a virtual URL. --%>
<c:redirect url="/login.action"/>

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics