博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Struts2之获取ServletAPI
阅读量:6087 次
发布时间:2019-06-20

本文共 1201 字,大约阅读时间需要 4 分钟。

1.通过ServletActionContext类

//获取request对象HttpServletRequest request = ServletActionContext.getRequest();//保存值到application中ServletActionContext.getActionContext(request).setApplication(new HashMap<>());

2.通过ServletRequestAware 接口

public class UserAction extends ActionSupport implements ServletRequestAware {    private String username;    private String userpwd;    private HttpServletRequest request;    public String getUsername() {        return username;    }    public void setUsername(String username) {        this.username = username;    }    public String getUserpwd() {        return userpwd;    }    public void setUserpwd(String userpwd) {        this.userpwd = userpwd;    }    @Override    public void setServletRequest(HttpServletRequest arg0) {        this.request = arg0;    }    public void executeAjax() throws IOException {        // 处理Ajax请求        String name = request.getParameter("username");                String pwd = request.getParameter("userpwd");        HttpServletResponse response = ServletActionContext.getResponse();                response.getWriter().print("hello"+username+"hello"+userpwd);            }    }

转载于:https://www.cnblogs.com/jiangwenwen1/p/9461608.html

你可能感兴趣的文章
水平添加滚动条
查看>>
PHP中”单例模式“实例讲解
查看>>
VS2008查看dll导出函数
查看>>
VM EBS R12迁移,启动APTier . AutoConfig错误
查看>>
atitit.细节决定成败的适合情形与缺点
查看>>
Mysql利用binlog恢复数据
查看>>
我的友情链接
查看>>
用yum安装mariadb
查看>>
一点IT"边缘化"的人的思考
查看>>
WPF 降低.net framework到4.0
查看>>
搭建一个通用的脚手架
查看>>
开年巨制!千人千面回放技术让你“看到”Flutter用户侧问题
查看>>
开源磁盘加密软件VeraCrypt教程
查看>>
本地vs云:大数据厮杀的最终幸存者会是谁?
查看>>
阿里云公共镜像、自定义镜像、共享镜像和镜像市场的区别 ...
查看>>
shadowtunnel v1.7 发布:新增上级负载均衡支持独立密码
查看>>
Java线程:什么是线程
查看>>
mysql5.7 创建一个超级管理员
查看>>
【框架整合】Maven-SpringMVC3.X+Spring3.X+MyBatis3-日志、JSON解析、表关联查询等均已配置好...
查看>>
要想成为高级Java程序员需要具备哪些知识呢?
查看>>