Struts2访问Servlet
知识点:
servlet是单例的,Action是多例的,一次请求,创建一个Action的实例
结果页面分为全局和局部两类(局部优先级更高)
result标签:
name : 默认succes
type :页面跳转类型
dispatcher 默认值,请求转发(action转发jsp)
redirect 重定向(action重定向jsp)
chain 转发(action转发action)
redirectAction 重定向(action重定向action)
stream struts2中提供文件下载的功能
代码如下
struts.xml
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.5//EN"
"http://struts.apache.org/dtds/struts-2.5.dtd"> <struts>
<package name="demo1" extends="struts-default">
<!--全局结果页面-->
<global-results>
<result name="success">servlet1/demo2.jsp</result>
</global-results>
<action name="requestDemo1" class="com.jinke.servlet1.RequestDemo1"/>
<action name="requestDemo2" class="com.jinke.servlet1.RequestDemo2"/>
<action name="requestDemo3" class="com.jinke.servlet1.RequestDemo3"/> <!--局部结果页面-->
<action name="requestDemo1" class="com.jinke.servlet1.RequestDemo1">
<result name="success">servlet1/demo2.jsp</result>
</action>
<action name="requestDemo2" class="com.jinke.servlet1.RequestDemo2">
<result name="success">servlet1/demo2.jsp</result>
</action>
<action name="requestDemo3" class="com.jinke.servlet1.RequestDemo3">
<result name="success">servlet1/demo2.jsp</result>
</action>
</package>
</struts>
web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
version="4.0">
<welcome-file-list>
<welcome-file>servlet1/demo1.jsp</welcome-file>
</welcome-file-list>
<filter>
<filter-name>struts2</filter-name>
<filter-class>org.apache.struts2.dispatcher.filter.StrutsPrepareAndExecuteFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>
demo1.jsp
<%--
Created by IntelliJ IDEA.
User: wanglei
Date: 2019/6/18
Time: 11:03
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Title</title>
</head>
<body>
<h1>Struts2访问Servlet的API</h1>
<h3>方式一:完成解耦合的方式</h3>
<form action="${pageContext.request.contextPath}/requestDemo1.action" method="post">
姓名:<input type="text" name="name"><br/>
密码:<input type="password" name="password"><br/>
<input type="submit" value="提交"></form> <h3>方式二:完成原生的方式访问</h3>
<form action="${pageContext.request.contextPath}/requestDemo2.action" method="post">
姓名:<input type="text" name="name"><br/>
密码:<input type="password" name="password"><br/>
<input type="submit" value="提交"></form> <h3>方式三:接口注入的方式访问</h3>
<form action="${pageContext.request.contextPath}/requestDemo3.action" method="post">
姓名:<input type="text" name="name"><br/>
密码:<input type="password" name="password"><br/>
<input type="submit" value="提交"></form> </body>
</html>
demo2.jsp
<%--
Created by IntelliJ IDEA.
User: wanglei
Date: 2019/6/18
Time: 11:24
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Title</title>
</head>
<body>
<h1>显示数据</h1>
${reqName}<br/>
${sessName}<br/>
${appName}<br/>
</body>
</html>
action层
import com.opensymphony.xwork2.ActionContext;
import com.opensymphony.xwork2.ActionSupport;
import org.apache.struts2.dispatcher.HttpParameters; /**
* 访问Servlet的API方式一:完全解耦合的方式
*/
public class RequestDemo1 extends ActionSupport {
@Override
public String execute() throws Exception {
//接收参数
//利用struts2中的对象ActionContext对象
ActionContext context = ActionContext.getContext();
//调用ActionContext中方法
HttpParameters map = context.getParameters();
// System.out.println(map); //二.向域对象中存入数据
context.put("reqName", map);//相当于request.setAttribute()
context.getSession().put("sessName", map);//相当于session.setAttribute()
context.getApplication().put("appName", map);//相当于application.setAttribute()
return SUCCESS;
}
}
import com.opensymphony.xwork2.ActionSupport;
import org.apache.struts2.ServletActionContext; import javax.servlet.http.HttpServletRequest;
import java.util.Map; /**
* 访问Servlet的API方式二:采用原生的方式
*/
public class RequestDemo2 extends ActionSupport {
@Override
public String execute() throws Exception {
//一、接收数据
//直接获得request对象,通过ServletActionSupport
HttpServletRequest request = ServletActionContext.getRequest();
Map<String, String[]> map = request.getParameterMap();
System.out.println(map.toString()); //二、向域对象中保存数据
//向request中保存数据
request.setAttribute("reqName", map.toString());
//向session中保存数据
request.getSession().setAttribute("sessName", map.toString());
//向application中保存数据
ServletActionContext.getServletContext().setAttribute("appName", map.toString());
return SUCCESS;
}
}
import com.opensymphony.xwork2.ActionSupport;
import org.apache.struts2.interceptor.ServletRequestAware;
import org.apache.struts2.util.ServletContextAware; import javax.servlet.ServletContext;
import javax.servlet.http.HttpServletRequest;
import java.util.Arrays;
import java.util.Map; /**
* 访问Servlet的API方式三:接口注入的方式
*/
public class RequestDemo3 extends ActionSupport implements ServletRequestAware, ServletContextAware {
private HttpServletRequest request;
private ServletContext context; @Override
public String execute() throws Exception {
//一、接收参数
//通过接口注入的方式获得request对象
Map<String, String[]> map = request.getParameterMap();
for (String key : map.keySet()) {
String[] value = map.get(key);
System.out.println(key + " " + Arrays.toString(value));
} //二、向域对象中保存数据
//向request域中保存数据
request.setAttribute("reqName", map.toString());
//向session中保存数据
request.getSession().setAttribute("sessName", map.toString());
//向Application中保存数据
context.setAttribute("appName", map.toString());
return super.execute();
} @Override
public void setServletRequest(HttpServletRequest httpServletRequest) {
this.request = httpServletRequest;
} @Override
public void setServletContext(ServletContext servletContext) {
this.context = servletContext;
}
}
结果


欢迎关注我的微信公众号:安卓圈

Struts2访问Servlet的更多相关文章
- 配置Struts2及Struts2访问servlet api的方式
Struts2的起源与背景 在很长的一段时间内,在所有的MVC框架中,Struts1处于绝对的统治地位,无论是从市场的普及范围,还是具体的使用者数量. 其他MVC框架都无 法与其相比,作为一一款优秀的 ...
- (转)Struts2访问Servlet的API及......
http://blog.csdn.net/yerenyuan_pku/article/details/67315598 Struts2访问Servlet的API 前面已经对Struts2的流程已经执行 ...
- 八 Struts2访问Servlet的API方式三:接口注入
Struts2访问Servlet的API方式三:接口注入 通过实现ServletRequestAware, ServletContextAware 接口,拿到Request.ServletContex ...
- 七 Struts2访问Servlet的API方式二:原生方式
Struts2访问Servlet的API方式二:原生方式 和解耦合的方式不同,原生方式既可以拿到域对象,也可以调用域对象中的方法 前端jsp: <%@ page language="j ...
- 六 Struts2访问Servlet的API方式一:完全解耦合的方式
注意: 完全解耦合的方式,这种方式只能获得代表request.session.application的数据的Map集合. 不能操作这些对象的本身的方法. 1 jsp: <%@ page lang ...
- struts2访问servlet API
搭建环境: 引入jar包,src下建立struts.xml文件 项目配置文件web.xml. web.xml: <?xml version="1.0" encoding=&q ...
- Struts2(七) Struts2访问Servlet的API
当接受表单参数,向页面保持数据时.要用到Struts访问Servlet 的API .下面只做参考,有错误或不同意见可以发送邮箱2440867831@qq.com .建议大家看struts文档,源代码 ...
- Struts2访问Servlet API的三种方式
有时我们需要用到Request, Response, Session,Page, ServletContext这些我们以前常用的对象,那么在Struts2中怎么样使用到这些对象呢,通常有三种方式. * ...
- Struts2访问Servlet API的几种方式
struts2提供了三种方式访问servlet API:大致分为两类 1. ActionContext: public static ActionContext getContext() :获得当前 ...
随机推荐
- Distance(2019年牛客多校第八场D题+CDQ+树状数组)
题目链接 传送门 思路 这个题在\(BZOJ\)上有个二维平面的版本(\(BZOJ2716\)天使玩偶),不过是权限题因此就不附带链接了,我也只是在算法进阶指南上看到过,那个题的写法是\(CDQ\), ...
- 《团队名称》第八次团队作业:Alpha冲刺day1
项目 内容 这个作业属于哪个课程 2016计算机科学与工程学院软件工程(西北师范大学) 这个作业的要求在哪里 实验十二 团队作业8-软件测试与ALPHA冲刺 团队名称 快活帮 作业学习目标 (1)掌握 ...
- static在Swift 中表示 “类型范围作用域”
In Swift, however, type properties are written as part of the type’s definition, within the type’s o ...
- Educational Codeforces F. Remainder Problem
[传送门] 题意就是单点加以及查询下标为等差数列位置上的值之和.刚开始看到这道题.我以为一个数的倍数是log级别的.就直接写了发暴力.就T了.还在想为啥,优化了几发才发现不太对劲.然后才想到是$\df ...
- Connected Component in Undirected Graph
Description Find connected component in undirected graph. Each node in the graph contains a label an ...
- drf常用方法
1.认证 2.权限 3.序列化 4.分页 5.限流
- Python -- 正则表达式 regular expression
正则表达式(regular expression) 根据其英文翻译,re模块 作用:用来匹配字符串. 在Python中,正则表达式是特殊的字符序列,检查一个字符串是否与某种模式匹配. 设计思想:用一 ...
- pmm 添加proxysql metrics
pmm 对于proxysql 的管理是基于metrics的进行处理的,使用的是proxysql exporter 对于proxysql exporter的添加,比较简单,我们可以通过独立的额容器运行e ...
- 我用AI(Adobe Illustrator CS6)合并路径的两个常用方法
作为一个切图仔,经常与设计大佬的PSD打交道,PSD里面又有各种icon图标需要导出,偷懒的方法直接导出png图片,丢个背景图上页面完美解决问题!! 第二天来个需求,能不能把这个icon图标给我换个颜 ...
- 小说美句摘抄&&动漫壁纸
不知道为啥脑子一抽打算开个坑(反正咱是个不务正业的人) 大部分是网文里的,某些是轻小说里的,文学名著--咱也不像会看那个的人啊-- upd 2019.11.6:把一些自己觉得好的动漫壁纸贴一贴,图床用 ...