1./在jsp页面标签中,例如<form action="/test.jsp"></form>
此时,/代表的是当前站点,即为http://localhost:8080,提交后,访问到地址为http://localhost:8080/test.jsp。
2./在servlet 中,或者说,提交给servlet 引擎处理的/,如在servlet中进行转发。
request.getRequestDispatcher("/test.jsp").forword(request,response);
此时,/代表的是当前web 应用,即为http://localhost:8080/Servlet,提交后访问地址 为:http://localhost:8080/Servlet/test.jsp
此时,/代表的是当前站点,即为http://localhost:8080,提交后,访问到地址为http://localhost:8080/test.jsp。
2./在servlet 中,或者说,提交给servlet 引擎处理的/,如在servlet中进行转发。
request.getRequestDispatcher("/test.jsp").forword(request,response);
此时,/代表的是当前web 应用,即为http://localhost:8080/Servlet,提交后访问地址 为:http://localhost:8080/Servlet/test.jsp