Struts2进阶学习3
Struts2进阶学习3
OGNL表达式与Struts2的整合

核心配置文件与页面
<?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="show" namespace="/" extends="struts-default" >
<action name="ShowAction" class="com.struts2.action.ShowAction" method="execute" >
<result name="success" type="dispatcher" >/show.jsp</result>
</action> <action name="ShowAction2" class="com.struts2.action.ShowAction" method="getParam" >
<result name="success" type="dispatcher" >/form.jsp</result>
</action> <action name="redirect" class="com.struts2.action.RedirectAction" method="redirect" >
<result name="success" type="redirectAction" >
<param name="namespace">/</param>
<param name="actionName">ShowAction</param>
<!-- 路径携带参数;以及利用OGNL表达式动态绑定参数 -->
<param name="name">${name}</param>
</result>
</action>
</package> </struts>
struts.xml
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Title</title>
</head>
<body>
<form action="${pageContext.request.contextPath}/ShowAction">
name:<input type="text" name="name"/><br>
<input type="submit" value="提交"/>
</form>
</body>
</html>
form
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@ taglib prefix="s" uri="/struts-tags" %>
<html>
<head>
<title>Title</title>
</head>
<body>
<s:debug></s:debug>
</body>
</html>
show
package com.struts2.pojo; /**
* @author: 肖德子裕
* @date: 2018/11/20 21:05
* @description:
*/
public class User {
private String name;
private Integer age; /**
* 回音方法:传什么值返回什么值,一般用于测试
* @param o
* @return
*/
public static Object test(Object o){
return o;
} public User() {
} public User(String name, Integer age) {
this.name = name;
this.age = age;
} 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;
}
}
User
OGNL表达式基本语法
package com.struts2.ognl; import com.struts2.pojo.User;
import ognl.Ognl;
import ognl.OgnlContext;
import org.junit.Test; import java.util.HashMap;
import java.util.Map; /**
* @author: 肖德子裕
* @date: 2018/11/20 21:03
* @description: 测试OGNL表达式(对象视图导航语言),支持比EL表达式更丰富的语法
*/
public class Demo {
/**
* OGNL基本语法
* @throws Exception
*/
@Test
public void test() throws Exception{
//准备Root(可放置任意对象)
User rootUser=new User("xdzy",18);
//准备Context(放置map)
Map<String,User> context=new HashMap<String,User>();
context.put("user1",new User("jack",17));
context.put("user2",new User("rose",27));
//准备OGNLContext
OgnlContext oc=new OgnlContext();
oc.setRoot(rootUser);
oc.setValues(context); //书写OGNL
//获取rootUser的name和age(第一个参数就是OGNL的语法)
String rootName = (String) Ognl.getValue("name", oc, oc.getRoot());
Integer age = (Integer) Ognl.getValue("age", oc, oc.getRoot());
System.out.println(rootName);
System.out.println(age); //获取context的name与age
String name = (String) Ognl.getValue("#user1.name", oc, oc.getRoot());
System.out.println(name); //对rootUser属性进行赋值
String rootName1 = (String) Ognl.getValue("name='张三'", oc, oc.getRoot());
System.out.println(rootName1); //对context属性进行赋值
String name1 = (String) Ognl.getValue("#user1.name='李四'", oc, oc.getRoot());
System.out.println(name1); //调用rootUser的属性方法
Ognl.getValue("setName('王五')", oc, oc.getRoot());
String rootName2 = (String) Ognl.getValue("getName()", oc, oc.getRoot());
System.out.println(rootName2); //调用context的属性方法
String name2 = (String) Ognl.getValue("#user1.setName('赵六'),#user1.getName()", oc, oc.getRoot());
System.out.println(name2); //调用静态方法;访问静态属性
String name3 = (String) Ognl.getValue("@com.struts2.pojo.User@test('hello')", oc, oc.getRoot());
Double pi = (Double) Ognl.getValue("@java.lang.Math@PI", oc, oc.getRoot());
System.out.println(name3);
System.out.println(pi);
} /**
* OGNL基本语法2
* @throws Exception
*/
@Test
public void test2() throws Exception{
//准备Root(可放置任意对象)
User rootUser=new User("xdzy",18);
//准备Context(放置map)
Map<String,User> context=new HashMap<String,User>();
context.put("user1",new User("jack",17));
context.put("user2",new User("rose",27));
//准备OGNLContext
OgnlContext oc=new OgnlContext();
oc.setRoot(rootUser);
oc.setValues(context); //书写OGNL
//通过OGNL创建list
Integer size = (Integer) Ognl.getValue("{'肖','德','子','裕'}.size()", oc, oc.getRoot());
System.out.println(size);
//通过OGNL创建map
Integer size1 = (Integer) Ognl.getValue("#{'name':'xdzy','age':12}.size()", oc, oc.getRoot());
String name = (String) Ognl.getValue("#{'name':'xdzy','age':12}['name']", oc, oc.getRoot());
Integer age = (Integer) Ognl.getValue("#{'name':'xdzy','age':12}.get('age')", oc, oc.getRoot());
System.out.println(size1);
System.out.println(name);
System.out.println(age);
}
}
Demo
测试整合使用
package com.struts2.action; import com.opensymphony.xwork2.ActionContext;
import com.opensymphony.xwork2.ActionSupport;
import com.opensymphony.xwork2.ModelDriven;
import com.opensymphony.xwork2.Preparable;
import com.opensymphony.xwork2.util.ValueStack;
import com.struts2.pojo.User; /**
* @author: 肖德子裕
* @date: 2018/11/21 9:40
* @description: 测试OGNL表达式与struts2结合
* OGNL表达式的root在struts2中为栈,栈中保存的是当前访问的action
* 队列:先进先出;栈:先进后出(list)
* OGNL表达式的root在struts2中为ActionContext
* implements Preparable:在参数赋值之前实现
*/
public class ShowAction extends ActionSupport implements ModelDriven<User> {
/**
* 重写默认方法
* @return
* @throws Exception
*/
@Override
public String execute() throws Exception {
System.out.println("hello action");
return SUCCESS;
} private User user=new User(); /**
* 如果在参数赋值之前压栈,将无法获取参数值
* @return
*/
public String getParam(){
System.out.println(user);
return SUCCESS;
} /**
* 该拦截器在参数赋值之前实现,所以可以获取参数值
* @throws Exception
*/
/*@Override
public void prepare() throws Exception {
//获取值栈
ValueStack stack = ActionContext.getContext().getValueStack();
//压入栈顶
stack.push(user);
}*/ @Override
public User getModel() {
return user;
}
}
ShowAction
package com.struts2.action; import com.opensymphony.xwork2.ActionSupport; /**
* @author: 肖德子裕
* @date: 2018/11/21 10:40
* @description: 重定向时携带参数
*/
public class RedirectAction extends ActionSupport {
private String name; public String getName() {
return name;
} public void setName(String name) {
this.name = name;
} public String redirect(){
name="xdzy";
return SUCCESS;
}
}
RedirectAction
Struts2进阶学习3的更多相关文章
- Struts2进阶学习4
Struts2进阶学习4 自定义拦截器的使用 核心配置文件 <?xml version="1.0" encoding="UTF-8"?> <! ...
- Struts2进阶(一)运行原理及搭建步骤
Struts2进阶(一)运行原理 Struts2框架 Struts2框架搭建步骤 致力于web服务,不可避免的涉及到编程实现部分功能.考虑使用到SSH框架中的Struts2.本篇文章只为深入理解Str ...
- PHP程序员进阶学习书籍参考指南
PHP程序员进阶学习书籍参考指南 @heiyeluren lastmodify: 2016/2/18 [初阶](基础知识及入门) 01. <PHP与MySQL程序设计(第4版)> ...
- Matlab 进阶学习记录
最近在看 Faster RCNN的Matlab code,发现很多matlab技巧,在此记录: 1. conf_proposal = proposal_config('image_means', ...
- struts2源代码学习之初始化(一)
看struts2源代码已有一段时日,从今天開始,就做一个总结吧. 首先,先看看怎么调试struts2源代码吧,主要是下面步骤: 使用Myeclipse创建一个webproject 导入struts2须 ...
- Struts2框架学习(三) 数据处理
Struts2框架学习(三) 数据处理 Struts2框架框架使用OGNL语言和值栈技术实现数据的流转处理. 值栈就相当于一个容器,用来存放数据,而OGNL是一种快速查询数据的语言. 值栈:Value ...
- Struts2框架学习(二) Action
Struts2框架学习(二) Action Struts2框架中的Action类是一个单独的javabean对象.不像Struts1中还要去继承HttpServlet,耦合度减小了. 1,流程 拦截器 ...
- Struts2框架学习(一)
Struts2框架学习(一) 1,Struts2框架介绍 Struts2框架是MVC流程框架,适合分层开发.框架应用实现不依赖于Servlet,使用大量的拦截器来处理用户请求,属于无侵入式的设计. 2 ...
- zuul进阶学习(二)
1. zuul进阶学习(二) 1.1. zuul对接apollo 1.1.1. Netflix Archaius 1.1.2. 定期拉 1.2. zuul生产管理实践 1.2.1. zuul网关参考部 ...
随机推荐
- Java中Date()类 日期转字符串、字符串转日期的问题(已解决)
Java中Date()类 日期转字符串.字符串转日期的问题 今天在写东西的时候突然发现一个问题,就是先new 一个Date()然后将生成的值转为字符串, 然后再将转换后的字符串再次用new Date( ...
- canvas玩转微信红包
CSS3相关属性: <!DOCTYPE html> <html> <head lang='en'> <meta charset='UTF-8'/> &l ...
- git 无法忽略Android Studio 生成的 .idea目录解决办法
在Android Studio中导入了别的人Gradle项目,产生了 .idea文件夹, 然后git 发现了这个变动,修改了 .gitignore不起作用,仍然不能忽略这个文件夹 在项目目录里面 右键 ...
- hibernate_ID生成策略
increment:主键按数值顺序递增.此方式的实现机制为在当前应用实例中维持一个变量,以保存着当前的最大值,之后每次需要生成主键的时候将此值加1作为主键.这种方式可能产生的问题是:如果当前有多个实例 ...
- Flask入门request session cookie(二)
1 HTTP方法分类 1 GET 浏览器告知服务器:只获取页面上的信息并发给我.这是最常用的方法. 2 HEAD 浏览器告诉服务器:欲获取信息,但是只关心消息头 .应用应像处理 GET 请求一样来处理 ...
- IIS中X509Certificate遇见的问题
由于开发过程中需要用到证书,所以通过调用 X509Certificate2 访问p12文件. 代码开发完成后,在本地VS上测试通过,本地IIS上测试通过,发布到线上服务器IIS后不通过:提示找不到文件 ...
- WAKE-WIN10-SOFT-GITHUB
1,GITHUB 官网:https://github.com/ 2,软件工具 ,,,,,,
- May 28th 2017 Week 22nd Sunday
Behind every beautiful thing, there's some kind of pain. 美丽背后,必有某种努力. No pains, no gains. Maybe we n ...
- javascript Object与Array用法
引用类型:引用类型是一种数据结构,用于将数据和功能组织在一起.引用类型的值是引用类型的一个实例. 一.Object ECMAScript中的对象其实就是一组数据和功能的结合. Object类型其实是所 ...
- HDU 4165 卡特兰
题意:有n个药片,每次吃半片,吃2n天,那么有多少种吃法. 分析:如果说吃半片,那么一定要吃过一整片,用 ) 表示吃半片,用 ( 表示吃整片,那么就是求一个正确的括号匹配方案数,即卡特兰数. 卡特兰数 ...