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网关参考部 ...
随机推荐
- Maven之依赖关系
在maven的管理体系中,各个项目组成了一个复杂的关系网,但是每个项目都是平等的,是个没有贵贱高低,众生平等的世界,全球每个项目从理论上来说都可以相互依赖.就是说,你跟开发Spring的大牛们平起平坐 ...
- java参数传递之值传递
一 概述 1.什么是参数传递? 调用方法时向形参传递数据的过程叫做参数传递.在编程语言中有两种传递方式:值传递与引用传递.必须强调的是,这里提到的两种传递方式不是仅限于java使用到的传递方式,而是出 ...
- Winform中 DataGridView控件中的 CheckBox 的值读出来 始终 为 False ,已解决
private void DGV_DetailsViewer_CellContentClick(object sender, DataGridViewCellEventArgs e) { )) { D ...
- IEEP-网络设计
IEEP-网络设计 网络设计概述 网络设计概述 1.负责把网络规划阶段获得的客户需求运用技术手段予以规范化体现 2.网络设计一般遵循模块化指导方针,分模块进行设计 3.网络设计的输出成果必须是规范的. ...
- em px 换算在线工具
网址: http://pxtoem.com/#help http://www.runoob.com/tags/ref-pxtoemconversion.html
- 织梦Dedecms主要文件夹目录及模板文件说明
虽然织梦DedeCMS因为安全问题被人所诟病,但瑕不掩瑜,无论从用户群数量还是时间等各方面,织梦DedeCMS都是国内排名前几的CMS建站程序.如果你想学习CMS的二次开发,织梦DedeCMS是必须需 ...
- url规范化:解决从baidu.com到www.baidu.com的
通过 301重定向可以实现 把www.baidu.com和baidu.com合并,并把之前的域名也一并合并. 有两种实现方法: 第一种方法是判断nginx核心变量host(别名功能): server ...
- Orchard Core 文档翻译 (二)代码生成模板 Code Generation Templates
Code Generation Templates 翻译原文:https://www.cnblogs.com/Qbit/p/9746457.html转载请注明出处 Orchard Core Templ ...
- 用unoreder_map实现词频统计
博客写在CSDN了,google了一下移植真的巨麻烦.... 这里贴个网址算了.... https://blog.csdn.net/z1991998920/article/details/796891 ...
- git 解决冲突方法
转载:http://www.cnlvzi.com/index.php/Index/article/id/119 当共享一个项目后提交冲突时 git push -f 强制推送本地的替换服务端 git f ...