在java web種經(jīng)常出現(xiàn) 404找不到網(wǎng)頁的錯誤,究其原因,一般是訪問的路徑不對。
java web中的路徑使用按我的分法可以分兩種情況,當然啦兩者使用相對路徑是一致,本文只說絕對路徑。
情況一、指向外部的web組件和本身關系不大的,這一類的有:html中使用路徑的標簽,比如<a>標簽中的href;servlet和jsp中的重定向sendRedirect(path);
情況二、指向內(nèi)部的web組件和本身有關系的,這一類我暫時看到的有:servlet或者jsp的轉發(fā)
假設在myapp項目下有個login.html,index.jsp,還寫了兩個servletA和servletB.
在web.xml中的地址配置:
<url-pattern>/servlet/servletA</url-pattern>
<url-pattern>/servlet/servletB</url-pattern>
在情況一中:若在路徑中以/開頭,則這一/相當于http://localhost:8080/
1、login.html有個form表單有提交給servletA,那么action要填的路徑:
絕對路徑方式:action="/myapp/servlet/servletA" ------http://localhost:8080/myapp/servlet/servletA
相對路徑方式:action="servlet/servletA" ------http://localhost:8080/myapp/servlet/servletA
2、login.html有個<a>鏈接到index.jsp 那么
絕對路徑方式:href="/myapp/index.jsp" ------http://localhost:8080/myapp/index.jsp
相對路徑方式:action="index.jsp" ------http://localhost:8080/myapp/index.jsp
3、index.jsp中重定向到servletA
絕對路徑方式:sendRedirect("/myapp/servlet/servletA"); ------http://localhost:8080/myapp/servlet/servletA
相對路徑方式:sendRedirect("servlet/servletA"); ---http://localhost:8080/myapp/servlet/servletA
在情況二中:若在路徑中以/開頭,則這一/相當于http://localhost:8080/myapp/
1.servletA轉發(fā)到servletB
絕對路徑方式:request.getRequestDispatcher("/servlet/servletB").forward(request, response);
--------http://localhost:8080/myapp/servlet/servletB
相對路徑方式:request.getRequestDispatcher("servlet/servletB").forward(request, response);
--------http://localhost:8080/myapp/servlet/servletB
注意:
建議使用絕對路徑,相對路徑是相對于當前瀏覽器地址欄的路徑(源地址)。
可能會出現(xiàn):你在某個頁面寫了一個相對路徑(目標路徑),因為轉發(fā)是不改變地址的,那么要是別人是通過轉發(fā)到達你的這個頁面的,那么地址欄的源地址就是不確定的,既然不確定你使用相對路徑相對于這個不確定的路徑就極有可能出錯,所以建議使用絕對路徑,這樣可避免這種問題。
獲得項目路徑和絕對路徑:
項目路徑:String path=request.getContextPath(); ---- /myapp
String p=this.getServletContext().getRealPath("/"); ----- G:\environment\tomcat\webapps\myapp\
總結:
這里主要弄明白是指向外部的還內(nèi)部的,外部時"/"就是代表主機路徑,內(nèi)部時"/"就是代表當前項目路徑.
|