JavaEE笔记
Posted dawn-tangzedong
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaEE笔记相关的知识,希望对你有一定的参考价值。
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笔记的主要内容,如果未能解决你的问题,请参考以下文章