從Action中傳值到JSP頁面的方法

來源:互聯網
上載者:User

  1、一般是在Action中定義一個成員變數,然後對這個成員變數提供get/set方法,在JSP頁面就可以取到這個變數的值了。

  1)在Action中定義成員變數

//定義一個成員變數private String message;//提供get/set方法public String getMessage() {return message;}public void setMessage(String message) {this.message = message;}

  2)在JSP頁面中取值

${message}或者<s:property value="message"/>

  2、但是定義的成員變數多了,感覺整個Action的代碼就很長了。這個時候可以使用一些Servlet API進行值的存取操作:HttpServletRequest、HttpSession和ServletContext。Struts2對這個三個對象用Map進行了封裝,我們就可以使用Map對象來存取資料了。

  1)在Action中存值

ActionContext actionContext = ActionContext.getContext();//get HttpServletRequestMap<String,Object> request = (Map) actionContext.get("request");request.put("a", "a is in request");//get HttpSession//Map<String,Object> session = (Map) actionContext.get("session");Map<String,Object> session = actionContext.getSession();session.put("b", "b is in session");//get ServletContext//Map<String,Object> application  = (Map) actionContext.get("application");Map<String,Object> application  = actionContext.getApplication();application.put("c", "c is in application");

  2)在JSP頁面上取值

${a}${b}${c}or${requestScope.a}${sessionScope.b}${applicationScope.c}

  

相關文章

聯繫我們

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