我們說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>