最近在研究Spring的的MVC,其中有個問題比較困擾(問題比較低級,各位高手不要笑話啊!)。現在將思路整理一下。
在Spring的MVC中Controller接口會返回一個ModelAndView對象。ModelAndView中包含一個viewName,還可
以包含String類型的modelName和Object的modelObject。當你在相應的View取值時,你可以用EL標簽直接取值,如$
{modelName}。但是你不如不用EL標簽來取值呢?那應該怎么做?(雖然在JSTL 1.1 規范中, JSP2.0
容器已經能夠獨立的理解任何 EL 表達式。)
HttpServletRequest.getParameter("modelName");
能取到想要的modelObject嗎?經過測試之后,發現是不能的。后來想想,其他道理挺簡單的,當兩個Web組件之間為轉發關系時,轉發源會將要共享
request范圍內的數據先用setAttribute將數據放入到HttpServletRequest對象中,然后轉發目標通過
getAttribute方法來取得要共享的數據。而MVC中用的就是Web組件之間的轉發啊!真是笨,怎么當時沒有想到呢?
下面整理一下getParameter和getAttribute的區別和各自的使用范圍。
(1)HttpServletRequest類有setAttribute()方法,而沒有setParameter()方法
(2)當兩個Web組件之間為鏈接關系時,被鏈接的組件通過getParameter()方法來獲得請求參數,例如假定welcome.jsp和authenticate.jsp之間為鏈接關系,welcome.jsp中有以下代碼:
<a href="authenticate.jsp?username=wolf">authenticate.jsp </a>
或者:
<form name="form1" method="post" action="authenticate.jsp">
請輸入用戶姓名:<input type="text" name="username">
<input type="submit" name="Submit" value="提交">
</form>
在authenticate.jsp中通過request.getParameter("username")方法來獲得請求參數username:
<% String username=request.getParameter("username"); %>
(3)當兩個Web組件之間為轉發關系時,轉發目標組件通過getAttribute()方法來和轉發源組件共享request范圍內的數據。
假定
authenticate.jsp和hello.jsp之間為轉發關系。authenticate.jsp希望向hello.jsp傳遞當前的用戶名
字, 如何傳遞這一數據呢?先在authenticate.jsp中調用setAttribute()方法:
<%
String username=request.getParameter("username");
request.setAttribute("username",username);
%>
<jsp:forward page="hello.jsp" />
在hello.jsp中通過getAttribute()方法獲得用戶名字:
<% String username=(String)request.getAttribute("username"); %>
Hello: <%=username %>
從更深的層次考慮,request.getParameter()方法傳遞的數據,會從Web客戶端傳到Web服務器端,代表HTTP請求數據。request.getParameter()方法返回String類型的數據。
request.setAttribute()和getAttribute()方法傳遞的數據只會存在于Web容器內部,在具有轉發關系的Web組件之間共享。這兩個方法能夠設置Object類型的共享數據。
request.getParameter()取得是通過容器的實現來取得通過類似post,get等方式傳入的數據。
request.setAttribute()和getAttribute()只是在web容器內部流轉,僅僅是請求處理階段。
getAttribute是返回對象,getParameter返回字符串
總的來說:request.getAttribute()方法返回request范圍內存在的對象,而request.getParameter()方法是獲取http提交過來的數據。