表达式

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. 作业1:使用go搭建一个web-server

    todo1:搭建web-server的原理 todo2:go实现web-server

  2. 学会C#可以做什么

    C#基于.NET Framework  和 .NET CORE平台 Client/Server 客户端/服务端 windows桌面应用程序 winform  2D WPF  3D Browser/Se ...

  3. 多租户SaaS平台的数据库方案

    1.1 多租户是什么 多租户技术(Multi-TenancyTechnology)又称多重租赁技术:是一种软件架构技术,是实现如何在多用户环境下 (此处的多用户一般是面向企业用户)共用相同的系统或程序 ...

  4. 【Python实现图片验证码】

    "```python import base64 import random from PIL import Image from PIL import ImageDraw # 画笔对象 f ...

  5. selenium+python自动化用例登陆界面模板

    一.基本逻辑 1.自动填写用户名和密码登录成功后跳转到相应页面 2.验证相应页面的url与给定的url是否一致,如果一致则测试通过,如果不一致则不通过 二.以jenkins登陆界面为例,代码如下 fr ...

  6. jq的 on 事件委托 导致多次执行问题

    解除 这个元素 在 父级上的 click 事件委托$(msg.fatherDiv).off('click','.fangdaimg_fn2'); click事件$('.fangdaimg_fn2'). ...

  7. WPscan扫描工具安装使用

    WPScan是Kali Linux默认自带的一款漏洞扫描工具,它采用Ruby编写,能够扫描WordPress网站中的多种安全漏洞,其中包括WordPress本身的漏洞.插件漏洞和主题漏洞.最新版本WP ...

  8. 2019年小结&2020年展望

    每篇一句 If you want love, then this is it. This is real life. It's not perfect but it's real. --Before ...

  9. 关于ActiveMq的Exception occurred while processing this request, check the log for more information!问题

    错误原因:jsp渲染的时候报错了.根本原因在于jdk版本和activemq版本的问题. 两种解决方案: 1.把jdk版本改为jdk1.7 2.activeMQ采用5.15,它依赖于jdk1.8

  10. Apache的虚拟主机功能(基于IP地址、基于虚拟主机、基于端口)

    1. 安装Apache服务程序(系统用户,1-199之间) 第一步:在虚拟机软件里选中光盘镜像: 第二步:将光盘设备挂载到/media/cdrom目录 输入:mkdir -p /media/cdrom ...