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() :获得当前 ...
随机推荐
- 项目Beta冲刺(团队)——05.25(3/7)
项目Beta冲刺(团队)--05.25(3/7) 格式描述 课程名称:软件工程1916|W(福州大学) 作业要求:项目Beta冲刺(团队) 团队名称:为了交项目干杯 作业目标:记录Beta敏捷冲刺第3 ...
- RemoveError: 'setuptools' is a dependency of conda and cannot be removed from conda's operating environment.
今天用conda install 任何包都会出现这个错误: RemoveError: 'setuptools' is a dependency of conda and cannot be remov ...
- Goland在go mod vendor模式下无法识别某些库
症状:go build可以正常编译,但代码编辑器里面提示找不到相关lib,后来发现是因为go.mod中没有用require这个库,补上库地址和版本.因为项目的mod vendor模式,版本一般不需要写 ...
- 第8章 动态SQL
8.1动态SQL中的元素 8.2<if>元素 举例,在映射文件中: <select id="findCustomerByNameAndJobs" paramete ...
- pg_flame postgresql EXPLAIN ANALYZE 火焰图工具
pg_flame 是golang 编写的一个将pg的EXPLAIN ANALYZE 转换为火焰图,使用简单 以下是一个简单的demo 环境准备 docker-compose 文件 version: ...
- %lld 和 %I64d
在Linux下输出long long 类型的是 printf("%lld", a); 在Windows下输出是 printf("%I64d", a); xxy学 ...
- hive基础知识三
1. 基本查询 注意 SQL 语言大小写不敏感 SQL 可以写在一行或者多行 关键字不能被缩写,也不能分行 各子句一般要分行写 使用缩进提高语句的可读性 1.1 全表和特定列查询 全表查询 selec ...
- Impala 架构探索-Impala 系统组成与使用调优
要好好使用 Impala 就得好好梳理一下他得结构以及他存在得一些问题或者需要注意得地方.本系列博客主要想记录一下对 Impala 架构梳理以及使用上的 workaround. Impala 简介 首 ...
- LINK : fatal error LNK1181: cannot open input file 'glew32.lib' error: command 'C:\\Program Files (
下载 库文件 参考: https://stackoverflow.com/questions/53355474/kivent-installation-fatal-error-lnk1181-cant ...
- 【BigData】Java基础_数组
什么是数组?数据是可以装一组数据的变量 1.定义数组 float[] arr1 = new float[10]; // 可以装10个float数据 int[] arr2 = new int[10]; ...