码迷,mamicode.com
首页 > Windows程序 > 详细

Struts2_API

时间:2018-02-25 00:12:04      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:action   requests   struts   ret   map   ring   post   get   public   

1.访问servletAPI方法1


 

  

 1 public String execute() throws Exception {
 2         //request域对象==》map (struts2并不推荐使用原生request域对象)
 3         //不推荐
 4         Map<String, Object> requestScope = (Map<String, Object>) ActionContext.getContext().get("request");
 5         //推荐
 6         ActionContext.getContext().put("name", "requestTom");
 7         //session域对象==》map
 8         Map<String, Object> sessionScope = ActionContext.getContext().getSession();
 9         sessionScope.put("name", "sessionTom");
10         //application域对象==》map
11         Map<String, Object> applicationScope = ActionContext.getContext().getApplication();
12         applicationScope.put("name", "applicationTom");
13         return SUCCESS;
14     }

 1 request:${requestScope.name}<br> 2 session:${sessionScope.name}<br> 3 application:${applicationScope.name}<br> 

Struts2_API

标签:action   requests   struts   ret   map   ring   post   get   public   

原文地址:https://www.cnblogs.com/rocker-pg/p/8467960.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!