我想在IE中只输入“http://localhost:8080/ ”
不想在IE中每次都输入“http://localhost:8080/abc.do”

解决方案 »

  1.   

    貌似不可以直接配置为***.do的形式,不过可以曲线救国<welcome-file-list> 
         <welcome-file>index.jsp </welcome-file> 
        </welcome-file-list>这里仍然是调index.jsp,不过在这个jsp里面直接请求abc.do就可以了
      

  2.   

    只要在index.jsp里面写一段话就可以了<%
        response.sendRedirect("/test/abc.do"); //这里的具体路径你根据自己的情况写了
    %>
      

  3.   

     没错 你可以在index.jsp理加上这段
    <c:redirect url="/abc.do">