struts2框架学习笔记5:OGNL表达式

Posted xuyiqing

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了struts2框架学习笔记5:OGNL表达式相关的知识,希望对你有一定的参考价值。

OGNL取值范围分两部分,root、Context两部分

可以放置任何对象作为ROOT,CONTEXT中必须是Map键值对

示例:

准备工作:

    public void fun1() throws Exception {
        // 准备ONGLContext
        // 准备Root
        User rootUser = new User("tom", 18);
        // 准备Context
        Map<String, User> context = new HashMap<String, User>();
        context.put("user1", new User("jack", 18));
        context.put("user2", new User("rose", 22));
        OgnlContext oc = new OgnlContext();
        // 将rootUser作为root部分
        oc.setRoot(rootUser);
        // 将context这个Map作为Context部分
        oc.setValues(context);
        // 书写OGNL
        Ognl.getValue("", oc, oc.getRoot());
        //在""中书写OGNL表达式即可
    }

User类:

技术分享图片
package bean;

public class User {
    private String name;
    private Integer age;
    
    
    
    public User() {
        super();
        // TODO Auto-generated constructor stub
    }
    public User(String name, Integer age) {
        super();
        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;
    }
    
}
View Code

 

语法:

从root中取出对象:

        // 取出root中user对象的name属性
        String name = (String) Ognl.getValue("name", oc, oc.getRoot());
        Integer age = (Integer) Ognl.getValue("age", oc, oc.getRoot());

 

从Context中取出对象:

        // 取出context中键为user1对象的name属性
        String name1 = (String) Ognl.getValue("#user1.name", oc, oc.getRoot());
        String name2 = (String) Ognl.getValue("#user2.name", oc, oc.getRoot());
        Integer age = (Integer) Ognl.getValue("#user2.age", oc, oc.getRoot());

 

为属性赋值:

        // 将root中的user对象的name属性赋值
        Ognl.getValue("name=‘jerry‘", oc, oc.getRoot());

给context赋值:

        String name2 = (String) Ognl.getValue("#user1.name=‘张三‘", oc, oc.getRoot());

 

调用对象的方法:

        // 调用root中user对象的setName方法
        Ognl.getValue("setName(‘张三‘)", oc, oc.getRoot());
        String name1 = (String) Ognl.getValue("getName()", oc, oc.getRoot());

        String name2 = (String) Ognl.getValue("#user1.setName(‘lucy‘),#user1.getName()", oc, oc.getRoot());

(注意:可以将两条语句写在一起,逗号分隔,返回值是最后一个语句)

 

调用静态方法:

        Double pi = (Double) Ognl.getValue("@[email protected]", oc,oc.getRoot());

 

创建对象:

        // 创建list对象
        Integer size = (Integer) Ognl.getValue("{‘tom‘,‘jerry‘,‘jack‘,‘rose‘}.size()", oc, oc.getRoot());
        String name1 = (String) Ognl.getValue("{‘tom‘,‘jerry‘,‘jack‘,‘rose‘}[0]", oc, oc.getRoot());
        String name2 = (String) Ognl.getValue("{‘tom‘,‘jerry‘,‘jack‘,‘rose‘}.get(1)", oc, oc.getRoot());

        // 创建Map对象
        Integer size2 = (Integer) Ognl.getValue("#{‘name‘:‘tom‘,‘age‘:18}.size()", oc, oc.getRoot());
        String name3 = (String) Ognl.getValue("#{‘name‘:‘tom‘,‘age‘:18}[‘name‘]", oc, oc.getRoot());
        Integer age = (Integer) Ognl.getValue("#{‘name‘:‘tom‘,‘age‘:18}.get(‘age‘)", oc, oc.getRoot());

 

以上是关于struts2框架学习笔记5:OGNL表达式的主要内容,如果未能解决你的问题,请参考以下文章

Struts2学习笔记三:OGNL表达式学习Struts2与Ognl表达式的结合原理

[原创]java WEB学习笔记59:Struts2学习之路---OGNL,值栈,读取对象栈中的对象的属性,读取 Context Map 里的对象的属性,调用字段和方法,数组,list,map(代码片

Struts2学习笔记(OGNL表达式)

[ SSH框架 ] Struts2框架学习之三(OGNl和ValueStack值栈学习)

Struts2OGNLValueStack

Struts2学习———— ognl表达式值栈actionContext之间的关系