Struts之ognl

一,介绍:

ognl:全称Object Graph Navigation Language(对象图导航语言),一种强大的表达式语言。

OgnlContext(ognl上下文):其实就是Map (教室、老师、学生)

OgnlContext=根对象(1)+非根对象(N)---》context英文原意是上下文,环境/容器

如:教室:Map;老师:根对象(1);学生:非根对象(N)

二,Struts传值的优先级

2.1,导入所用资料:

 2.2,demo1:

public class Demo1 {
    /**
     * @param args
     * @throws OgnlException
     */
    public static void main(String[] args)  {
        Employee e = new Employee();
        e.setName("小李");

        Manager m = new Manager();
        m.setName("张经理");

        // 创建OGNL下文,而OGNL上下文实际上就是一个Map对象
        OgnlContext ctx = new OgnlContext();

        // 将员工和经理放到OGNL上下文当中去
        ctx.put("employee", e);
        ctx.put("manager", m);
        ctx.setRoot(e);// 设置OGNL上下文的根对象

        /** ********************** 取值操作 *************************** */
        // 表达式name将执行e.getName(),因为e对象是根对象(请注意根对象和非根对象表达式的区别)
        String employeeName = (String) OnglExpression.getValue("name", ctx, e);
        System.out.println(employeeName);

        // 表达式#manager.name将执行m.getName(),注意:如果访问的不是根对象那么必须在前面加上一个名称空间,例如:#manager.name
        String managerName = (String) OnglExpression.getValue("#manager.name",
                ctx, e);
        System.out.println(managerName);

        // 当然根对象也可以使用#employee.name表达式进行访问
        employeeName = (String) OnglExpression.getValue("#employee.name", ctx,
                e);
        System.out.println(employeeName);

        /** ********************** 赋值操作 *************************** */
        OnglExpression.setValue("name", ctx, e, "小明");
        employeeName = (String) OnglExpression.getValue("name", ctx, e);
        System.out.println(employeeName);

        OnglExpression.setValue("#manager.name", ctx, e, "孙经理");
        managerName = (String) OnglExpression.getValue("#manager.name", ctx, e);
        System.out.println(managerName);

        OnglExpression.setValue("#employee.name", ctx, e, "小芳");
        employeeName = (String) OnglExpression.getValue("name", ctx, e);
        System.out.println(employeeName);
    }

} 

运行结果:

三,值栈 

demo7:

public class Demo7 extends ActionSupport{
    /**
     * 
     * 值栈的使用
     * 
     */
    public String ognl1() {
        // 栈:表示一个先进后出的数据结构
        ValueStack vs = ActionContext.getContext().getValueStack();
        // push方法把项压入栈顶
        vs.push(new Employee("zs", 22));
        vs.push(new Employee("ls", 22));
        vs.push(new Employee("ww", 22));

        // pop方法移除栈顶对象并作为此函数的值返回该对象
        Employee e = (Employee) vs.pop();
        System.out.println(e.getName());
        e = (Employee) vs.pop();
        System.out.println(e.getName());
        e = (Employee) vs.pop();
        System.out.println(e.getName());
        return "bookEdit";
    }

    /**
     * 此例用于模拟struts2的值栈计算过程
     * 
     * @param args
     */
    public String ognl2() {
        ValueStack vs = ActionContext.getContext().getValueStack();
        vs.push(new Employee("张雇员", 2000));// 1
        vs.push(new Student("小明同学", "s001"));// 0
        System.out.println(vs.findValue("name"));
        System.out.println(vs.findValue("salary2"));
        ActionContext ac = ActionContext.getContext();
        return "bookEdit";
    }
}  

struts-sy.xml 记得配置:

3,1  push方法把项压入栈顶:

pop方法一处栈顶对象并作为此函数的值返回该对象(先进后出

 3,2 值栈是从上到下直到取到为止

    取 name时,从上往下,因此取到了小明,而小明同学没有salary2,从上往下取,取到张雇员的salary2

ognl结构图:&&ValueStack:为根对象, 两个有同样的属性,在赋值的情况下,根据先看到谁就赋值给谁

 

 

 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值