jsp/servlet頁面跳轉丟失樣式問題__js

來源:互聯網
上載者:User

問題:使用servlet,如何處理在多重路徑頁面跳轉中servlet轉寄頁面樣式丟失問題。(例如訪問 http://localhost/project/listUser.action後轉到http://localhost/project/user /listUser.jsp,這時候瀏覽器還是停留在http://localhost/project/addUser.action。這時候jsp原來的圖片定位可能就都出錯了)


而解決jsp的路徑問題,我覺得以下方式就基本完美了(有問題,請各位前輩指出):

首先推薦一個更自然的辦法,可以使得原來用相對路徑定位的jsp繼續可用,不必逐個修改連結(個人推薦):

第一步:在jsp的head中添加base標籤和一段java,但把getContextPath改為getRequestURI 協助

jsp檔案
1 2 3 4 5 6 7 <%      String path = request.getRequestURI();      String basePath = request.getScheme() + "://"              + request.getServerName() + ":" + request.getServerPort()              + path; %> < base href="<%=basePath%>">

注意是request.getRequestURI,這樣擷取出來的正好就是jsp的絕對路徑。
例如瀏覽器地址欄是:http://localhost:8084/project/listUser.action
base是

第二步:jsp頁面內,全部使用相對路徑訪問。

第三步,就不必管action的路徑如何了。

這個方法,可以相容使用action和不使用action兩種情況。 第二種方法:
第一步:在jsp的head中添加base標籤和一段java 協助

jsp檔案
1 2 3 4 5 6 7 <%      String path = request.getContextPath();      String basePath = request.getScheme() + "://"              + request.getServerName() + ":" + request.getServerPort()              + path + "/"; %> < base
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.