Servlet 路径书写总结(参考总结)

  在写javaweb项目的时候,总会遇到路径书写的问题,现在将其作个总结。

        在javaweb中需要书写路径的地方主要有这四大类:

        客服端路径

                超链接

                表当

                重定向

        服务器端路径

                转发

                包含

        资源获取路径

                servletContext获取资源

                ClassLoader获取资源

                Class获取资源

        路径

现分别作介绍

其构建的javaweb如下:

Servlet 路径书写总结(参考总结)_第1张图片

1客服端路径

A超链接

[html]  view plain  copy
  1. <%@ page language="java" contentType="text/html; charset=UTF-8"  
  2.     pageEncoding="UTF-8"%>  
  3. >  
  4. <html>  
  5. <head>  
  6. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">  
  7. <title>页面Atitle>  
  8. head>  
  9. <body>  
  10.       
  11.           
  12.     <a href="http://localhost:8080/javaee/jsp/b.jsp">这是绝对地址超链接a><br/>  
  13.       
  14.       
  15.           
  16.     <a href="/javaee/jsp/b.jsp">这是以"/"开头的相对地址超链接a><br/>  
  17.       
  18.       
  19.           
  20.       
  21.       
  22.           
  23.     <form action="http://localhost:8080/javaee/PathServlet" methoe="get">  
  24.         username:<input type="text" name="username" value="">  
  25.         <input type="submit" value="表单提交到Servlet---绝对地址">  
  26.     form>  
  27.       
  28.       
  29.           
  30.     <form action="/javaee/PathServlet" methoe="get">  
  31.         username:<input type="text" name="username" value="">  
  32.         <input type="submit" value="表单提交到Servlet---以/开头的相对地址">  
  33.     form>  
  34.       
  35.         

你可能感兴趣的:(Servlet 路径书写总结(参考总结))