java web中的各种servlet路径

一直搞不懂web中各种复杂的路径,直到现在还是觉得很杂乱,此文稍微列举一些方法得到的路径。

request.getServletContext()得到的是ServletContext对象,getRealPath(“/”) 获取实际路径,“/”指代项目根目录,所以代码返回的是项目在容器中的实际发布运行的根路径。

例如:我的tmall项目是在E:\project\tmall。

java web中的各种servlet路径_第1张图片

我在tomcat的servlet.xml中配置context:

path是访问此项目的虚拟路径根目录;docBase是此项目绝对路径,如果Web应用采用开放目录结构,则指定Web应用的根目录。docBase也是项目的发布目录。

在web目录下的test目录下,创建一个el.jsp文件:


<%@ page contentType="text/html;charset=UTF-8" language="java" %>



    练习


request.getServletContext(): <%=request.getServletContext()%>
request.getServletContext().getRealPath("/"): <%=request.getServletContext().getRealPath("/")%>
request.getServletContext().getRealPath("helloworld"): <%=request.getServletContext().getRealPath("helloworld")%>
request.getContextPath() <%=request.getContextPath()%>
request.getServletPath() <%=request.getServletPath()%>
request.getRequestURL() <%=request.getRequestURL()%>
request.getRequestURI() <%=request.getRequestURI()%>

启动tomcat,运行结果:

java web中的各种servlet路径_第2张图片

关闭tomcat,在idea中启动它的Tomcat,运行结果:

java web中的各种servlet路径_第3张图片

可以看到只有getRealPath()不同,因为它们的实际发布路径变了。

你可能感兴趣的:(java,web)