關於Servlet和Jsp之間相互傳值

1. Jsp向Jsp / Servlet傳值session

①表單傳值(包括Hidden組件)jsp

發送方:form submit(包括input type=hidden)this

接收方:request.getParameter  或使用JavaBean以下spa

②session傳值orm

發送方:session.setAttribute("Key",value)get

接收方:session.getAttribute("Key")input

③連接參數傳值it

發送方:io

接收方:request.getParameterform

2. Servlet向Jsp傳值

①request傳值

發送方:request.setAttribute("Key","value");

getServletContext().getRequestDispatcher("forward.jsp").forward(request, response);

接收方:request.getAttribute

②session傳值

發送方:request.getSession().setAttribute("Key",value)

接收方:session.getAttribute("Key")  或使用JavaBean

③連接參數傳值

發送方:response.getWriter().print("");

接收方:request.getParameter

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

例子

  1. request.setAttribute("login",new Login("hello","yuri"));   
  2.          getServletContext().getRequestDispatcher("/t2.jsp").forward(request,response);
  1. class="jb.Login" scope="request" />   
  2.   
  3.       
  4.       

package jb;   

  1.   
  2. public class Login {   
  3.     private String id;   
  4.     private String pwd;   
  5.   
  6.     public String getId() {   
  7.         return id;   
  8.      }   
  9.   
  10.     public void setId(String id) {   
  11.         this.id = id;   
  12.      }   
  13.   
  14.     public String getPwd() {   
  15.         return pwd;   
  16.      }   
  17.   
  18.     public void setPwd(String pwd) {   
  19.         this.pwd = pwd;   
  20.      }   
  21.   
  22.     public Login(String id, String pwd) {   
  23.         this.id = id;   
  24.         this.pwd = pwd;   
  25.      }   
  26.   
  27.     public Login() {   
  28.   
  29.      }   
相關文章
相關標籤/搜索