表达式

1、表达式语言 ( Expression Language )
2、表达式的本质:  就是 按照某种规则 书写的 字符串
3、表达式的处理: 一定有一套程序 对 表达式 中的 字符串进行解析和处理,比如 Tomcat
4、常见的表达式

  • JSP 容器中支持 EL 表达式 ( 因此在 JSP 页面中可以直接使用 )
  • Spring 中 可以使用 Spring Expression Language ( SpEL )
  • Struts2 中可以使用 对象图导航语言Object Graphic Navigation Language(OGNL)

OGNL

1、定义

  • OGNL 是一种 功能强大 的 表达式语言 ( Expression Language )
  • OGNL 在 非 Web 环境下 ,需要用到 :javassist-3.20.0-GA.jar,ognl-3.1.12.jar
  • OGNL 目前是 Apache 基金会 下的 commons 项目 下的 一个小项目: http://commons.apache.org

2、测试案例

  • OgnlContext两个方法测试案例

    package ecut.OGNL.entity;
    
    import java.io.Serializable;
    
    public class Customer implements Serializable {
    
        private static final long serialVersionUID = 7499870485797565944L;
    
        private String username ;
    private String password ;
    private String confirm ; public String getUsername() {
    return username;
    }
    public void setUsername(String username) {
    this.username = username;
    }
    public String getPassword() {
    return password;
    }
    public void setPassword(String password) {
    this.password = password;
    }
    public String getConfirm() {
    return confirm;
    }
    public void setConfirm(String confirm) {
    this.confirm = confirm;
    } }
    package ecut.OGNL;
    
    import java.util.Map;
    
    import ecut.OGNL.entity.Customer;
    import ognl.Ognl;
    import ognl.OgnlContext;
    import ognl.OgnlException; public class OgnlTest1 { public static void main(String[] args) throws OgnlException {
    /*OGNL是通常要结合Struts 2的标志一起使用,如<s:property value="#xx" />
    struts页面中不能单独使用,el可以单独使用 ${sessionScope.username} */
    OgnlContext context = new OgnlContext();
    //OgnlContext 实现了Map接口
    System.out.println( context instanceof Map ); // Ognl.setValue( expression , root, value );
    Ognl.setValue( "customer" , context , new Customer() ); // Customer c = new Customer(); context.put( "customer" , c ) ; Ognl.setValue( "customer.username" , context , "张三丰" ); // c.setUsername( "张三丰" ); // JSP 表达式 : <%= c.getUsername() %>
    // EL 表达式: ${ customer.username }
    // OGNL 表达式 : customer.username(支持OGNL的环境,才可以使用) Object value = Ognl.getValue( "customer.username" , context ) ; // Ognl.getValue(expression, root)
    System.out.println( value ); } }

    OGNL 在 非 Web 环境下需要添加两个jar包,OGNL是通常要结合Struts 2的标志一起使用,如<s:property value="#x" /> struts页面中不能单独使用,el可以单独使用 ${sessionScope.username}。OgnlContext实现了Map接口因此可以使用相应的方法获取属性和设置属性。

  • 单元测试测试案例
    package ecut.OGNL;
    
    import org.junit.After;
    import org.junit.Before;
    import org.junit.Test; import ecut.OGNL.entity.Customer;
    import ognl.Ognl;
    import ognl.OgnlContext;
    import ognl.OgnlException; public class OgnlTest2 { private OgnlContext root; /* @Before 每次test都执行一次,@BeforeClass仅执行一次,方法得是静态的 */
    public @Before void init() throws OgnlException {
    root = new OgnlContext();
    Ognl.setValue("customer", root, new Customer());
    Ognl.setValue("customer.username", root, "张三丰");
    } public @Test void testGetValue() throws OgnlException {
    Object value = Ognl.getValue("customer.username", root);
    System.out.println(value);
    } public @Test void testSetValue() throws OgnlException {
    Object value = Ognl.getValue("customer.username", root);
    System.out.println(value);
    Ognl.setValue("customer.username", root, "张君宝");
    value = Ognl.getValue("customer.username", root);
    System.out.println(value);
    } public @After void destory() {
    } }

    首先要添加Junit 的library,然后新建Junit Test Case ,注解的位置可以在方法前也可以在修饰符后面。

  • 获取对象属性测试案例
    package ecut.OGNL.action;
    
    import ecut.OGNL.entity.Customer;
    
    public class CustomerAction {
    
        private Customer customer ;
    
        public String execute() throws Exception {
    System.out.println( "execute" );
    return "execute" ;
    } public String login() throws Exception {
    System.out.println( "login" );
    return "login" ;
    } public String logout() throws Exception {
    System.out.println( "logout" );
    return "logout" ;
    } public Customer getCustomer() {
    System.out.println( "CustomerAction # getCustomer()" );
    return customer;
    } public void setCustomer(Customer customer) {
    System.out.println( "CustomerAction # setCustomer( Customer )" );
    this.customer = customer;
    } }
    package ecut.OGNL;
    
    import org.junit.After;
    import org.junit.Before;
    import org.junit.Test; import ecut.OGNL.entity.Customer;
    import ecut.OGNL.action.CustomerAction;
    import ognl.Ognl;
    import ognl.OgnlContext;
    import ognl.OgnlException; public class OgnlTest3 { private OgnlContext root ; public @Before void init() throws OgnlException {
    root = new OgnlContext();
    Ognl.setValue( "customerAction" , root , new CustomerAction() );
    } public @Test void testGetValue() throws OgnlException {
    Object value = Ognl.getValue( "customerAction.customer" , root ) ;
    System.out.println( value );
    } public @Test void testSetValue() throws OgnlException {
    Object value = Ognl.getValue( "customerAction.customer" , root ) ;
    System.out.println( value );
    Ognl.setValue( "customerAction.customer" , root , new Customer() );
    Ognl.setValue( "customerAction.customer.username" , root , "张翠山" );
    value = Ognl.getValue( "customerAction.customer.username" , root ) ;
    System.out.println( value );
    } public @After void destory() {
    } }
  • 获取方法测试案例
    package ecut.OGNL;
    
    import org.junit.After;
    import org.junit.Before;
    import org.junit.Test; import ecut.OGNL.action.CustomerAction;
    import ognl.Ognl;
    import ognl.OgnlContext;
    import ognl.OgnlException; public class OgnlTest4 { private OgnlContext root ; public @Before void init() throws OgnlException {
    root = new OgnlContext();
    Ognl.setValue( "customerAction" , root , new CustomerAction() );
    } public @Test void testGetValue() throws OgnlException {
    Object value = Ognl.getValue( "customerAction.login()" , root ) ;
    System.out.println( value );
    } public @Test void testSetValue() throws OgnlException {
    } public @After void destory() {
    } }

转载请于明显处标明出处

https://www.cnblogs.com/AmyZheng/p/9217438.html

Struts2学习(五)的更多相关文章

  1. Struts2学习五----------指定多个配置文件

    © 版权声明:本文为博主原创文章,转载请注明出处 指定多个配置文件 - 在Struts2配置文件中使用include可指定多个配置文件 实例 1.项目结构 2.pom.xml <project ...

  2. [原创]java WEB学习笔记75:Struts2 学习之路-- 总结 和 目录

    本博客的目的:①总结自己的学习过程,相当于学习笔记 ②将自己的经验分享给大家,相互学习,互相交流,不可商用 内容难免出现问题,欢迎指正,交流,探讨,可以留言,也可以通过以下方式联系. 本人互联网技术爱 ...

  3. [原创]java WEB学习笔记66:Struts2 学习之路--Struts的CRUD操作( 查看 / 删除/ 添加) 使用 paramsPrepareParamsStack 重构代码 ,PrepareInterceptor拦截器,paramsPrepareParamsStack 拦截器栈

    本博客的目的:①总结自己的学习过程,相当于学习笔记 ②将自己的经验分享给大家,相互学习,互相交流,不可商用 内容难免出现问题,欢迎指正,交流,探讨,可以留言,也可以通过以下方式联系. 本人互联网技术爱 ...

  4. TweenMax动画库学习(五)

    目录            TweenMax动画库学习(一)            TweenMax动画库学习(二)            TweenMax动画库学习(三)            Tw ...

  5. Struts2学习笔记⑧

    今天是Struts2学习笔记的最后一篇文章了.用什么做结尾呢,这两天其实还学了很多东西,没有记录下,今天就查漏补缺一下. 文件上传与下载.FreeMarker以及昨天没做完的例子 文件上传与下载 文件 ...

  6. Struts2学习笔记①

    Struts2 学习笔记① 所有的程序学习都从Hello World开始,今天先跟着书做一个HW的示例. Struts2是一套MVC框架,使用起来非常方便,接触到现在觉得最麻烦的地方是配置文件.我的一 ...

  7. Struts2学习笔记NO.1------结合Hibernate完成查询商品类别简单案例(工具IDEA)

    Struts2学习笔记一结合Hibernate完成查询商品类别简单案例(工具IDEA) 1.jar包准备 Hibernate+Struts2 jar包 struts的jar比较多,可以从Struts官 ...

  8. Struts2学习:interceptor(拦截器)的使用

    对于需要登陆验证.权限验证等功能的网站,每一次请求,每一个action都写一段验证的代码,未免显得冗余且不易维护.struts2提供了拦截器interceptor,为这些页面提供一个切面,或者说公共组 ...

  9. SVG 学习<五> SVG动画

    目录 SVG 学习<一>基础图形及线段 SVG 学习<二>进阶 SVG世界,视野,视窗 stroke属性 svg分组 SVG 学习<三>渐变 SVG 学习<四 ...

  10. Android JNI学习(五)——Demo演示

    本系列文章如下: Android JNI(一)——NDK与JNI基础 Android JNI学习(二)——实战JNI之“hello world” Android JNI学习(三)——Java与Nati ...

随机推荐

  1. 【资源分享】Dll Injector(DLL注入器)

    *----------------------------------------------[下载区]----------------------------------------------* ...

  2. C语言程序设计(二)

    目录:   1.算法基本概念 2.认识循环语句 3.算法的表示法 4.求素数 5.求闰年 6.判断一个数是否为回文数 算法基本概念: (一)一个程序主要包含的2方面信息: 1.对数据的描述,在程序中要 ...

  3. 【转】Docker网络模式--默认模式bridge模式

    一 引言 当 Docker 启动时,会自动在主机上创建一个名为 docker0 虚拟网桥,这实际上就是 Linux 的一个 bridge,可以理解为一个软件交换机.它会在挂载到它的网口之间进行转发.系 ...

  4. Java数组和方法

    1. 数组可以作为方法的参数 package cn.itcast.day05.demo04; /* 数组可以作为方法的参数. 当调用方法的时候,向方法的小括号进行传参,传递进去的其实是数组的地址值. ...

  5. MyBatis逆向工程的使用(非插件方式)

    一.概述 MyBatis是目前流行的优秀持久层框架,其逆向工程更是大大缩减了开发时间.所谓逆向工程,指的是mybatis根据数据库设计好的表,自动生成对应model.mapper及mapper.xml ...

  6. 07-Docker-Image深入理解

    目录 07-Docker-Image深入理解 参考 镜像简介 什么是Docker镜像 什么是Docker容器 镜像结构 镜像特性 镜像层 容器层 镜像存储 07-Docker-Image深入理解 Do ...

  7. ABC156E

    题目链接 也是简单的组合数学问题,每个位置可以移动走,也可以移动来,那么我们就需要找最终的状态,也就是最终的0的个数 假设有m个0,就有n-m个非0空位,选择0的组合数为\(\textrm{C}_{n ...

  8. arc066E - Addition and Subtraction Hard

    题目链接 题目大意 给定一个只含加减和数字的表达式,在其中添加括号,使其值最大. 解题思路 显然,只有减号后面的括号会使其中表达式的值取反. 然后只有已经有左括号时才能加入右括号. 所以用\(f_0\ ...

  9. 棍子Sticks(poj_1011)[经典搜索]

    [题意描述] George用相同的长度棍子,将他们随机切成最多64个单位的长度,现在,他想回到原来的状态,但他忘了他原来的多少根,以及他们原本是多长.请帮助他和设计一个程序,计算最小的可能的原始长度. ...

  10. acm数论之旅(转载)--素数

    https://www.cnblogs.com/linyujun/p/5198832.html 前言:好多学ACM的人都在问我数论的知识(其实我本人分不清数学和数论有什么区别,反正以后有关数学的知识我 ...