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"/>

你可能感兴趣的:(c,Web,jsp,xml,IE)