表达式

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. 银行T0理财怎么选

    ## 从现金管理说开去 现金是资产配置中的基石,买股票需要花掉现金,吃饭消费也要花掉现金.现金和我们的生活息息相关,需要慎重地管理起来,因此现金管理应运而生. 现金管理需要兼顾 *流动性* 和 *收益 ...

  2. 实体间的关系:1:1,1:N,M:N

    *实体之间的关系* 1)1对1关系: 两个实体表内,存在相同的主键字段. 1.1)设计: 如果记录的主键值等于另一个关系表内记录的主键值,则两条 记录对应,1:1对应. 例子: #表一:学生信息表 # ...

  3. Servlt入门

    Servlt入门 java的两种体系结构 C/S (客户端/服务器)体系结构  通讯效率高且安全,但系统占用多 B/S (浏览器/服务器)体系结构    节约开发成本 C/S (客户端/服务器)体系结 ...

  4. C#面向对象三大特性:继承

    什么是继承 定义:继承是面向对象编程语言中的一个重要特性,当一个类A能够获取另一个类B中所有非私有的数据和操作的定义作为自己的部分或全部成分时,就称这两个类之间具有继承关系.被继承的类B称为父类或基类 ...

  5. Foreach报错

    List<String> a = new ArrayList<String>(); 2 a.add("1"); 3 a.add("2") ...

  6. java中怎么表现一对多

    链接:https://www.cnblogs.com/w-xibao/p/8183680.html 链接2:https://blog.csdn.net/C_time/article/details/8 ...

  7. window.onresize事件

    定义和用法 onresize 事件会在窗口或框架被调整大小时发生. 语法 In HTML: <element onresize="SomeJavaScriptCode"> ...

  8. 吴裕雄 python 神经网络——TensorFlow图片预处理调整图片

    import numpy as np import tensorflow as tf import matplotlib.pyplot as plt def distort_color(image, ...

  9. selenium常用的类库、对应的方法和属性

    selenium常用的类库.对应的方法和属性

  10. NLP开源工具

    最近有人问我几次NLP有哪些开源工具,这里做个笔记.