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网关参考部 ...
随机推荐
- HDU 5007 字符串匹配
http://acm.hust.edu.cn/vjudge/contest/122814#problem/A 匹配到字符串就输出,水题,主要是substr的运用 #include <iostre ...
- Java transient和volatile关键字
关键字Volatile Volatile修饰的成员变量在每次被线程访问时,都强迫从主内存中重读该成员变量的值.而且,当成员变量发生变化时,强迫线程将变化值回写到主内存.这样在任何时刻,两个不同的线程总 ...
- Django——stark组件
stark组件是仿照django的admin模块开发的一套组件,它的作用是在网页上对注册的数据表进行增删改查操作. 一.配置 1.创建stark应用,在settings.py中注册stark应用 st ...
- cf547D. Mike and Fish(欧拉回路)
题意 题目链接 Sol 说实话这题我到现在都不知道咋A的. 考试的时候是对任意相邻点之间连边,然后一分没有 然后改成每两个之间连一条边就A了.. 按说是可以过掉任意坐标上的点都是偶数的数据啊.. #i ...
- Android 自定义ListView滚动条样式
使用ListView FastScroller,默认滑块和自定义滑块图片的样子: 设置快速滚动属性很容易,只需在布局的xml文件里设置属性即可: <ListView android:id=&qu ...
- linux c开发: 在程序退出时进行处理
有时候,希望程序退出时能进行一些处理,比如保存状态,释放一些资源.c语言开发的linux程序,有可能正常退出(exit),有可能异常crash,而异常crash可能是响应了某信号的默认处理.这里总结一 ...
- GridCellChoiceEditor
choice_editor = wx.grid.GridCellChoiceEditor(choices_list, True) grid.SetCellEditor(row, col, choice ...
- log4j 配置详解
参考如下两个网址,讲的很详细,先看第一个再看第二个: log4j使用介绍:http://swiftlet.net/archives/683 java日志处理组件log4j--log4j.xml配置详解 ...
- file中mkdirs和mkdir的区别-文件上传
mkdirs()可以建立多级文件夹, mkdir()只会建立一级的文件夹, 如下: new File("/tmp/one/two/three").mkdirs(); 执行后, 会建 ...
- (六)svn 服务器端使用之权限管理
权限管理(了解) 认证授权机制 在企业开发中会为每位程序员.测试人员等相关人员分配一个账号,用户通过使用svn客户端连接svn服务时需要输入账号和密码,svn服务对账号和密码进行校验,输入正确可以继续 ...