getParameter 與 getAttribute的區別

HttpServletRequest.getParameter("modelName"); 能取到想要的modelObject嗎?顯然是不能的,緣由:當兩個Web組件之間爲轉發關係時,轉發源會將要共享 request範圍內的數據先用setAttribute將數據放入到HttpServletRequest對象中,而後轉發目標經過 getAttribute方法來取得要共享的數據。在實際開發過程當中,咱們所用到的MVC中用的就是Web組件之間的轉發!html

下面是getParameter和getAttribute的區別和各自的使用範圍。java

(1)HttpServletRequest類有setAttribute()方法,而沒有setParameter()方法web

(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">服務器

 請輸入用戶姓名:jsp

    <input  type="text" name="username"> post

    <input  type="submit"  name="Submit" value="提交">性能

 </form>
在authenticate.jsp中經過request.getParameter("username")方法來得到請求參數username:
<%  String  username=request.getParameter("username"); %>url

(3)當兩個Web組件之間爲轉發關係時,轉發目標組件經過getAttribute()方法來和轉發源組件共享request範圍內的數據。spa

假定 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" />orm


在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提交過來的數據。


再舉例說明:

request.getAttribute():是request時設置的變量的值,用request.setAttribute("name","您本身的值");來設置值。

request.getParameter():提取發送過來的參數如:http://localhost:8080/bbg.fms/file/add?fileid=12

String fileId = request.getParameter("fileid");  

system.out.print(fileId);

-----------------------------------------------------------------------------------------------------------------------

request.getParameter是用來接受來自get方法或post方法的參數  

     <form      method=post> </form>

     <form      method=get> </form>  

     <a  href="hotel.jsp?hotel_id=1">ok</a>  

  而且request.getParameter只能接受java.lang.String,也就是說String hotel_id = request.getParameter("hotel_id");  

request.getAttribute 是用來接受來自servlet的變量或Action(其實Action就是特殊的Servlet)  

  咱們能夠在Action中,request.setAttribute("ret",ret);  

  並且request.getAttribute只能接受java.lang.Object ,也就是說List ret =  (List)request.getAttribute("ret");因此說,若是你只用JSP,根本用不到request.getAttribute()。


如今能夠概括出二者的區別了:

request.getAttribute()和request.getParameter()的核心區別是:

request.getAttribute()得到的是對象類型,而request.getParameter()得到的是字符串類型。



對於通常的網頁應用,基本上是基於Post方式的傳遞,用getParameter取值。對於本身控制的,能夠通request.setAttribute和getAttribute來實現值得傳遞。  

經驗:

  1. 當用forward標籤及request.getRequestDispatcher.forward()時,能夠用setAttribute和getAttribut。

  2. 表單和超連接的提交都只能讀取name屬性相關的value,此時用getParameter();request.setAttribute沒法用表單提交的緣由:設定值的request,與表單請求的request不是同一個request,不是同一時間生成的。

  3. reponse.sendRediretion("hotel.jsp?hotel_id=1"),用getParameter("hotel_id")來提取.

此處再簡要說明一下Get/Post: 

  1. Get 方法經過 URL 請求來傳遞用戶的數據,將表單內各字段名稱與其內容,以成對的字符串鏈接,置於 action 屬性所指程序的 url 後,如[url]http://localhost:8080/bbg.fms/file/add?fileid=12&filename=bbg[/url],數據都會直接顯示在 url 上,就像用戶點擊一個連接同樣;

  2. Post 方法經過 HTTP的post 機制,將表單內各字段名稱與其內容放置在 HTML 表頭(header)內一塊兒傳送給服務器端交由 action 屬性能所指的程序處理,該程序會經過標準輸入(stdin)方式,將表單的數據讀出並加以處理。



參考:

http://www.cnblogs.com/jirglt/archive/2012/10/25/2738617.html

http://blog.sina.com.cn/s/blog_600046120100tnaj.html

相關文章
相關標籤/搜索