struts2获取request方法

struts2里面有三种方法可以获取request,最好使用ServletRequestAware接口通过IOC机制注入Request对象。
在Action中获取request方法一:

在Action中的代码:
Map request = (Map)ActionContext.getContext().get(“request”);
List tasks = taskManager.findAll();
request.put(“tasks”, tasks);

在JSP页面中获取其中的值:







”/>

方法二:通过ServletActionContext类来获取,使用struts2经验如果处理get传参是中文,只能使用该方法进行处理乱码问题

Action中代码:
HttpServletRequest request = ServletActionContext.getRequest();
request.setAttribute(“username”, “zhangsan”);

在jsp中获取其中的值

或者${requestScope.req}

方法三:通过ServletRequestAware接口通过IOC机制注入Request对象
Action中的代码:
Action实现ServletRequestAware接口,实现接口中的方法
private HttpServletRequest request;
//实现接口中的方法
public void setServletRequest(HttpServletRequest request){
this.request = request;
}
//然后在execute()方法中就可以使用了
public String execute(){
request.setAttribute(“username”, “zhangsan”);
request.getSession().getServletContext().getApplication(); //得到Application
}
该方法必须要实现,而且该方法是自动被调用
这个方法在被调用的过程中,会将创建好的request对象通过参数的方式传递给你,你可以用来赋给你本类中的变量,然后request就可以使用了
注意:setServletRequest()方法一定会再execute()方法被调用前执行

在jsp页面中获取其中的值

在上面的代码中, 在Action实现了一个 ServletRequestAware接口,并且实现了 setServletRequest方法。如果一个动作类实现了 ServletRequestAware接口, Struts2在调用 execute方法之前,就会先调用 setServletRequest方法,并将Request参数传入这个方法。如果想获得 HttpServletResponse、 HttpSession和 Cookie等对象,动作类可以分别实现 ServletResponseAware、 SessionAware和 CookiesAware等接口。这些接口都在 org.apache.struts2.interceptor包中。

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值