WEB-INF受保護目錄下jsp之間的互相訪問__js

來源:互聯網
上載者:User

我們說WEB-INF目錄下有 *.xml classes lib 等目錄和檔案,它們一般都是不讓直接存取的。

 

說明這個目錄是安全的,我們回想為什麼不把jsp、html等分頁檔放進去呢。

 

這樣會不會安全一些呢。大家猜的不錯,這樣是安全了(使用過濾器也可以實現該功能),

 

有一個路徑問題需要解決,使用頁面入口問題,如果分頁檔放在WEB-INF目錄下,使用者訪問

 

WEB-INF目錄下分頁檔會報找不到頁面,使用者該怎麼才能訪問到網站頁面呢。

 

如果liandong.jsp放在WEB-INF/jsp目錄下,Web Context-root為:liandong那麼

 

1.我們可以在WebRoot下建立index.jsp,其中的代碼為:

<jsp:forward page="WEB-INF/jsp/liandong.jsp"></jsp:forward>

 

2.我們可以在struts-config.xml配置代碼:

<action path="/test" scope="request"
    type="org.springframework.web.struts.DelegatingActionProxy">
  <forward name="liandong" path="/WEB-INF/jsp/liandong.jsp"></forward>    
   </action>

 

action 中代碼為:

@Override
 public ActionForward execute(ActionMapping mapping, ActionForm form,
   HttpServletRequest request, HttpServletResponse response)
   throws Exception {
  // TODO Auto-generated method stub
  // method 2
  return mapping.findForward("liandong");
 }

index.jsp代碼為:<a href="test.do">link-->liandong</a>

 

3.我們可以在action 中寫代碼:

@Override
 public ActionForward execute(ActionMapping mapping, ActionForm form,
   HttpServletRequest request, HttpServletResponse response)
   throws Exception {
  // TODO Auto-generated method stub
  System.out.println("bbb");
  RequestDispatcher rd = request.getRequestDispatcher("WEB-INF/jsp/liandong.jsp");

  rd.forward(request,response);

  return null;
 }

index.jsp代碼為:<a href="test.do">link-->liandong</a>

struts-config.xml配置代碼:

<action path="/test" scope="request"
    type="org.springframework.web.struts.DelegatingActionProxy">
  <forward name="liandong" path="/WEB-INF/jsp/liandong.jsp"></forward>    
   </action>

4.action 中

@Override
 public ActionForward execute(ActionMapping mapping, ActionForm form,
   HttpServletRequest request, HttpServletResponse response)
   throws Exception {
  // TODO Auto-generated method stub
  System.out.println("bbb");

  return new ActionForward("/WEB-INF/jsp/liandong.jsp");
 }

index.jsp代碼為:<a href="test.do">link-->liandong</a>

struts-config.xml配置代碼:

<action path="/test" scope="request"
    type="org.springframework.web.struts.DelegatingActionProxy">
  <forward name="liandong" path="/WEB-INF/jsp/liandong.jsp"></forward>    
   </action>

 

還有個問題就是,層疊樣式檔案、js指令檔、圖片檔案的路徑

1.頁面訪問圖片

background-image: url('/liandong/images/bg.bmp')

2.頁面訪問層疊樣式檔案

<link rel="stylesheet" href="/liandong/css/liandong.css" type="text/css"></link>

3.頁面訪問js指令檔

<script type="text/javascript" src="/liandong/js/liandong.js"></script>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.