Struts2基础学习2
Struts2基础学习2
项目结构,测试页面与实体类
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
request: ${requestScope.name}<br>
session:${sessionScope.name}<br>
application:${applicationScope.name}<br>
</body>
</html>
api
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
<form action="${pageContext.request.contextPath}/Demo3Action">
用户名:<input type="text" name="name" /><br>
年龄:<input type="text" name="age" /><br>
生日:<input type="text" name="birthday" /><br>
<input type="submit" value="提交" />
</form>
</body>
</html>
form1
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
<form action="${pageContext.request.contextPath}/Demo4Action">
用户名:<input type="text" name="user.name" /><br>
年龄:<input type="text" name="user.age" /><br>
生日:<input type="text" name="user.birthday" /><br>
<input type="submit" value="提交" />
</form>
</body>
</html>
form2
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
<form action="${pageContext.request.contextPath}/Demo5Action">
用户名:<input type="text" name="name" /><br>
年龄:<input type="text" name="age" /><br>
生日:<input type="text" name="birthday" /><br>
<input type="submit" value="提交" />
</form>
</body>
</html>
form3
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
<form action="${pageContext.request.contextPath}/Demo6Action" method="post" >
list:<input type="text" name="list" /><br>
list:<input type="text" name="list[3]" /><br>
map:<input type="text" name="map['key']" /><br>
<input type="submit" value="提交" />
</form>
</body>
</html>
form4
package com.struts2.pojo; import java.util.Date; /**
* @author: 肖德子裕
* @date: 2018/11/20 18:39
* @description:
*/
public class User {
private String name;
private Integer age;
private Date birthday; public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Integer getAge() {
return age;
}
public void setAge(Integer age) {
this.age = age;
}
public Date getBirthday() {
return birthday;
}
public void setBirthday(Date birthday) {
this.birthday = birthday;
}
@Override
public String toString() {
return "User [name=" + name + ", age=" + age + ", birthday=" + birthday + "]";
}
}
User
测试Struts2的重定向与转发
package com.struts2.action; import com.opensymphony.xwork2.ActionSupport; /**
* @author: 肖德子裕
* @date: 2018/11/20 10:25
* @description: 测试重定向与转发
* 之所以继承ActionSupport类,是因为该类实现了很多接口,我们可以直接使用
*/
public class Demo1Action extends ActionSupport { public String index() throws Exception{
System.out.println("hello1");
return SUCCESS;
} public String index2() throws Exception{
System.out.println("hello2");
return SUCCESS;
} public String index3() throws Exception{
System.out.println("hello3");
return SUCCESS;
} public String index4() throws Exception{
System.out.println("hello4");
return SUCCESS;
}
}
Demo1Action
测试Struts2获取servlet api
package com.struts2.action; import com.opensymphony.xwork2.ActionContext;
import com.opensymphony.xwork2.ActionSupport;
import org.apache.struts2.ServletActionContext; import java.util.Map; /**
* @author: 肖德子裕
* @date: 2018/11/20 14:05
* @description: 测试struts2获取原生servlet api
* 每次请求都会创建一个ActionContext对象(数据中心),请求结束时销毁
* 可以通过该对象获取servlet api
* 也可以通过ServletActionContext对象获取api(不推荐)
* 也可以通过实现相应的接口获取(不推荐)
* 3种方式都是从ActionContext中获取相应api
*/
public class Demo2Action extends ActionSupport {
/**
* 在本地线程ThreadLocal上绑定了创建的ActionContext对象
*/
public String test() throws Exception{
//获取request(不推荐使用)
Map<String, Object> requestScope = (Map<String, Object>) ActionContext.getContext().get("request"); //可以直接保存值到request(推荐)
ActionContext.getContext().put("name","request"); //获取session
Map<String, Object> sessionScope = ActionContext.getContext().getSession();
sessionScope.put("name","session"); //获取application
Map<String, Object> applicationScope = ActionContext.getContext().getApplication();
applicationScope.put("name","application"); return SUCCESS;
} }
Demo2Action
测试Struts2获取参数的方式
package com.struts2.action; import com.opensymphony.xwork2.ActionSupport; import java.util.Date; /**
* @author: 肖德子裕
* @date: 2018/11/20 14:39
* @description: 测试struts2属性获取参数
* 每次请求都会创建一个新的action实例对象
* servlet是线程不安全的;action是线程安全的,可以使用成员变量接收参数
* 参数支持自动转换,如字符串转日期,字符串转int
*/
public class Demo3Action extends ActionSupport {
private String name;
private Integer age;
private Date birthday; public Integer getAge() {
return age;
} public void setAge(Integer age) {
this.age = age;
} public Date getBirthday() {
return birthday;
} public void setBirthday(Date birthday) {
this.birthday = birthday;
} public String getName() {
return name;
} public void setName(String name) {
this.name = name;
} public String getParam(){
System.out.println(name+" "+age+" "+birthday);
return SUCCESS;
}
}
Demo3Action
package com.struts2.action; import com.opensymphony.xwork2.ActionSupport;
import com.struts2.pojo.User; /**
* @author: 肖德子裕
* @date: 2018/11/20 18:40
* @description: 测试struts2对象获取参数
*/
public class Demo4Action extends ActionSupport {
private User user; public User getUser() {
return user;
} public void setUser(User user) {
this.user = user;
} public String getParam(){
System.out.println(user);
return SUCCESS;
}
}
Demo4Action
package com.struts2.action; import com.opensymphony.xwork2.ActionSupport;
import com.opensymphony.xwork2.ModelDriven;
import com.struts2.pojo.User; /**
* @author: 肖德子裕
* @date: 2018/11/20 18:47
* @description: 测试struts2模型驱动获取参数
*/
public class Demo5Action extends ActionSupport implements ModelDriven<User> {
private User user=new User(); public String getParam(){
System.out.println(user);
return SUCCESS;
} @Override
public User getModel() {
return user;
}
}
Demo5Action
package com.struts2.action; import com.opensymphony.xwork2.ActionSupport; import java.util.List;
import java.util.Map; /**
* @author: 肖德子裕
* @date: 2018/11/20 19:05
* @description: 封装集合类型参数
*/
public class Demo6Action extends ActionSupport {
private List<String> list;
private Map<String,String> map; public List<String> getList() {
return list;
} public void setList(List<String> list) {
this.list = list;
} public Map<String, String> getMap() {
return map;
} public void setMap(Map<String, String> map) {
this.map = map;
} public String getParams(){
System.out.println(list);
System.out.println(map);
return SUCCESS;
}
}
Demo6Action
核心配置文件(注意web.xml中要配置过滤器)
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.3//EN"
"http://struts.apache.org/dtds/struts-2.3.dtd">
<struts> <package name="demo1" namespace="/" extends="struts-default" >
<!-- 测试转发(默认) -->
<action name="Demo1Action" class="com.struts2.action.Demo1Action" method="index" >
<result name="success" type="dispatcher" >/index.jsp</result>
</action>
<!-- 测试重定向 -->
<action name="Demo1Action2" class="com.struts2.action.Demo1Action" method="index2" >
<result name="success" type="redirect" >/index.jsp</result>
</action>
<!-- 测试链式转发跳转 -->
<action name="Demo1Action3" class="com.struts2.action.Demo1Action" method="index3" >
<result name="success" type="chain" >
<param name="namspace">/</param>
<param name="actionName">Demo1Action</param>
</result>
</action>
<!-- 测试链式重定向 -->
<action name="Demo1Action4" class="com.struts2.action.Demo1Action" method="index4" >
<result name="success" type="redirectAction" >
<param name="namspace">/</param>
<param name="actionName">Demo1Action</param>
</result>
</action>
</package> <package name="demo2" namespace="/" extends="struts-default" >
<!-- 测试获取servlet api -->
<action name="Demo2Action" class="com.struts2.action.Demo2Action" method="test" >
<result name="success" type="dispatcher" >/api.jsp</result>
</action>
</package> <package name="demo3" namespace="/" extends="struts-default" >
<!-- 测试属性获取参数 -->
<action name="Demo3Action" class="com.struts2.action.Demo3Action" method="getParam" >
<result name="success" type="dispatcher" >/form1.jsp</result>
</action>
</package> <package name="demo4" namespace="/" extends="struts-default" >
<!-- 测试对象获取参数 -->
<action name="Demo4Action" class="com.struts2.action.Demo4Action" method="getParam" >
<result name="success" type="dispatcher" >/form2.jsp</result>
</action>
</package> <package name="demo5" namespace="/" extends="struts-default" >
<!-- 测试模型驱动获取参数 -->
<action name="Demo5Action" class="com.struts2.action.Demo5Action" method="getParam" >
<result name="success" type="dispatcher" >/form3.jsp</result>
</action>
</package> <package name="demo6" namespace="/" extends="struts-default" >
<!-- 测试集合获取参数 -->
<action name="Demo6Action" class="com.struts2.action.Demo6Action" method="getParams" >
<result name="success" type="dispatcher" >/form4.jsp</result>
</action>
</package> </struts>
struts2.xml
Struts2基础学习2的更多相关文章
- Struts2基础学习总结
引用自:http://www.cnblogs.com/jbelial/archive/2012/05/10/2486886.html Struts 2是在WebWork2基础发展而来的. 注意:str ...
- struts2 基础学习
Struts 2是在WebWork2基础发展而来的. 注意:struts 2和struts 1在代码风格上几乎不一样. Struts 2 相比Struts 1的优点: 1.在软件设计上Struts ...
- struts2基础学习--环境配置(*原创)
1) -->下载开发包,网址:http://struts.apache.org/download.cgi 本文使用的是struts-2.5.2-all开发包 2) -->导入jar包,具体 ...
- Struts2基础学习(八)—Struts2防止表单重复提交
一.原因 用户重复提交表单在某些场合将会造成非常严重的后果.例如,在使用信用卡进行在线支付的时候,如果服务器的响应速度太 慢,用户有可能会多次点击提交按钮,而这可能导致那张信用卡上的金额被消 ...
- Struts2基础学习(七)—值栈和OGNL
目录: 一.值栈 二.OGNL表达式 一.值栈(ValueStack) 1.定义 ValueStack贯穿整个Acton的生命周期,每个Action类的对象实例都拥有一个ValueStack ...
- Struts2基础学习(六)—文件的上传和下载
一.文件的上传 1.单个文件上传 Struts2使用拦截器完成了文件的上传,而且底层使用的也是FileUpload开源组件. 客户端注意事项: (1)method="post&qu ...
- Struts2基础学习(五)—拦截器
一.概述 1.初识拦截器 Interceptor 拦截器类似前面学过的过滤器,是可以在action执行前后执行的代码,是我们做Web开发经常用到的技术.比如:权限控制.日志等.我们也可以将多 ...
- Struts2基础学习(四)—类型转换器和数据校验
一.自定义类型转换器 1.概述 Struts2提供了常规类型转换器,可以用于常用数据类型的转换,但如果目标类型是一个特殊类型,则需要自定义转换器.Struts2 类型转换器实际上都是基于OG ...
- Struts2基础学习(三)—Result和数据封装
一.Result Action处理完用户请求后,将返回一个普通的字符串,整个普通字符串就是一个逻辑视图名,Struts2根据逻辑视图名,决定响应哪个结果,处理结果使用<result&g ...
随机推荐
- wampserver启动时图标不变绿的解决方法
有2种可能: 1.你安装wamp的时候安装路径中有中文,把路径全部改为英文. 2.其他软件占用了80端口号,解决方法是在服务中找微软的sql server或者其他服务,关掉服务后重启就行了.
- 【转】浅谈https\ssl\数字证书
转载请注明出处:http://www.cnblogs.com/P_Chou/archive/2010/12/27/https-ssl-certification.html 全球可信的SSL数字证书申请 ...
- .NET 后台动态添加GridView列
BoundField bfColumn1 = new BoundField(); bfColumn1.DataField = "zbcompanyname"; bfColumn1. ...
- 【踩坑】报错 non-static method xxx() cannot be referenced from a static context
今天测试代码时遇到 Error:(6, 55) java: non-static method sayGoodbye() cannot be referenced from a static cont ...
- intellijidea课程 intellijidea神器使用技巧1-5 idea界面介绍
菜单栏介绍: file:文件操作edit:文本操作view:视图操作navigate:跳转code:源码文件analyze:项目依赖关系分析refactor:代码重构快捷操作,如:抽取函数build: ...
- 微信小程序实战篇:商品属性联动选择(案例)
本期的微信小程序实战篇来做一个电商网站经常用到的-商品属性联动选择的效果,素材参考了一点点奶茶. 效果演示: 商品属性联动.gif 代码示例 1.commodity.xml <!-- < ...
- 一步步理解typedef
1.如何用C语言实现一个函数,传递两个整形数,返回两个数的和? #include<stdio.h> int add(int a,int b) { return a+b; } void ma ...
- C++ Knowledge series Template & Class
Function Function is composed of name, parameter (operand, type of operand), return value, body with ...
- Chromium源码系列一:Chromium简介及源代码获取和编译
Chromium源码系列一:Chromium简介及源代码获取和编译 Chromium简介 Chromium是一个由Google主导开发的网页浏览器,以BSD许可证等多重自由版权发行并开放源代码.C ...
- Arduino-舵机控制Servo
以前没有接触过硬件,因为把弄APM2.5不得不去接触arduino板.Arduino是块极易上手的控板,不像单片机,你要花费大量的时间去学习预备知识,它只要你稍微懂点C语言既能上手.对于我这种业余爱好 ...