码迷,mamicode.com
首页 > 编程语言 > 详细

JavaEE笔记(七)

时间:2016-12-05 02:18:50      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:put   family   response   on()   请求响应   code   响应   log   类型   

Struts获取如何获取请求响应和回话

//获取HttpServletRequest
HttpServletRequest request = ServletActionContext.getRequest();
//获取HttpServletResponse
HttpServletResponse response= ServletActionContext.getResponse();
//获取session回话
HttpSession session = request.getSession();

Struts封装的请求回话
//首先获取ActionContext 
ActionContext actionContext = ActionContext.getContext()
//请求级以map的形式存放数据
actionContext.put(key,value);
//获取map类型的session
Map<String, Object> session = actionContext.getSession();
//回话级以map的形式存放数据
session.put(key,value);

 

JavaEE笔记(七)

标签:put   family   response   on()   请求响应   code   响应   log   类型   

原文地址:http://www.cnblogs.com/HackerBlog/p/6132508.html

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