多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
[TOC] # 简介 OGNL:对象视图导航语言. `${user.addr.name}` 这种写法就叫对象视图导航. OGNL不仅仅可以视图导航.支持比EL表达式更加丰富的功能. 它是一种功能强大的表达式语言,通过它简单一致的表达式语法,可以存取对象的任意属性,调用对象的方法,遍历整个对象的结构图,实现字段类型转化等功能。它使用相同的表达式去存取对象的属性 Strtsu2框架内置了OGNL OGNL本身也是一个项目,它是可以单独使用。 OGNL作用: 支持对象的操作,调用对象的方法 支持静态成员访问 支持赋值操作与表达串联 访问OGNL上下文,访问ActionContext 操作集合对象 搭建环境:单独使用OGNL来完成示例 ![](https://box.kancloud.cn/498000ae8106df060c68c13c2a091f84_704x800.png) OGNL三要素: 表达式 OgnlContext 上下文 Root 根 ![](https://box.kancloud.cn/96dc7ef56579bfed7055a7bb8c22bc58_822x752.png) # 作用 ![](https://box.kancloud.cn/655a68ad59134421cd542b584aa80989_1230x384.png) # 基本演示 准备测试类,User类 ~~~ package bean; public class User { private String name; private Integer age; public User() { super(); } 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; } @Override public String toString() { return "User [name=" + name + ", age=" + age + "]"; } } ~~~ ## 取出root中的属性值 ~~~ @Test public void fun1() throws OgnlException { // 准备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)); // 它就是个java.util.map OgnlContext oc = new OgnlContext(); // 将rootUser作为root部分 oc.setRoot(rootUser); // 将context这个Map作为Context部分 oc.setValues(context); // 书写OGNL String name = (String) Ognl.getValue("name", oc, oc.getRoot()); Integer age = (Integer) Ognl.getValue("age", oc, oc.getRoot()); System.out.println(name); System.out.println(age); } ~~~ ## 为属性赋值 ~~~ // 准备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)); // 它就是个java.util.map OgnlContext oc = new OgnlContext(); // 将rootUser作为root部分 oc.setRoot(rootUser); // 将context这个Map作为Context部分 oc.setValues(context); // 将root中的user对象的name属性赋值 Ognl.getValue("name='jerry'", oc, oc.getRoot()); String name = (String) Ognl.getValue("name", oc, oc.getRoot()); String name1 = (String) Ognl.getValue("#user1.name='jdxia',#user1.name", oc, oc.getRoot()); System.out.println(name); System.out.println(name1); ~~~ ## 调用方法 ~~~ // 准备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)); // 它就是个java.util.map OgnlContext oc = new OgnlContext(); // 将rootUser作为root部分 oc.setRoot(rootUser); // 将context这个Map作为Context部分 oc.setValues(context); // 调用root中user对象的setName方法 Ognl.getValue("setName('lilei')", oc, oc.getRoot()); String name = (String) Ognl.getValue("getName()", oc, oc.getRoot()); String name2 = (String) Ognl.getValue("#user1.setName('lucy'),#user1.getName()", oc, oc.getRoot()); System.out.println(name); System.out.println(name2); ~~~ ![](https://box.kancloud.cn/794d6cdd3ee8b79d3c10e16e7286c3ba_1630x442.png) ## 调用静态方法 准备测试类HahaUtils ~~~ package bean; public class HahaUtils { // 回音方法 public static Object echo(Object o) { return o; } } ~~~ ~~~ // 准备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)); // 它就是个java.util.map OgnlContext oc = new OgnlContext(); // 将rootUser作为root部分 oc.setRoot(rootUser); // 将context这个Map作为Context部分 oc.setValues(context); String name = (String) Ognl.getValue("@bean.HahaUtils@echo('hello')", oc, oc.getRoot()); //Double pi = (Double) Ognl.getValue("@java.lang.Math@PI", oc, oc.getRoot()); //内置 Double pi = (Double) Ognl.getValue("@@PI", oc, oc.getRoot()); System.out.println(name); System.out.println(pi); ~~~ ## 创建对象(List,Map) ~~~ // 准备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)); // 它就是个java.util.map OgnlContext oc = new OgnlContext(); // 将rootUser作为root部分 oc.setRoot(rootUser); // 将context这个Map作为Context部分 oc.setValues(context); // 创建list对象 Integer size = (Integer) Ognl.getValue("{'tom','jerry','jack','rose'}.size()", oc, oc.getRoot()); String name = (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()); System.out.println(size); System.out.println(name); System.out.println(name2); // 创建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()); System.out.println(size2); System.out.println(name3); System.out.println(age); ~~~ ![](https://box.kancloud.cn/27ea9bd3b076eaa10eaafa49de41421b_1896x1066.png) ## 访问Ognl上下文 ![](https://box.kancloud.cn/813365a3cc1a9dc92dc0c6912a1a3f4a_1714x1388.png) # struts2和Ognl结合 ## 结合原理 ![](https://box.kancloud.cn/b5b309ac88dc71a2b51c7f61fbcacc09_1488x754.png) ![](https://box.kancloud.cn/e2daff58d6833f298c27e6c6d900db5b_1494x448.png) ![](https://box.kancloud.cn/31ed8140137b59fde03951efa60f062a_1054x330.png) ![](https://box.kancloud.cn/4ab3fa8de314923b6609997885dac6d7_1238x134.png) ![](https://box.kancloud.cn/24a2b7e8b45894f25d439303f18698f3_968x574.png) ![](https://box.kancloud.cn/80621376ad8e1dde285237cdf1638e52_916x308.png) ## Strtus2框架中如何使用ognl表达式 在struts2框架中我们使用ognl表达式的作用是从valueStack中获取数据。 我们在struts2框架中可以使用ognl+valueStack达到在页面(jsp)上来获取相关的数据。 要想在jsp页面上使用ognl表达式,就需要结合struts2框架的标签 `<s:property value=”表达式”>`来使用 ![](https://box.kancloud.cn/e3e9953b94abbd6529453e11c5df9bea_1894x1096.png) 默认情况下,栈中放置当前访问的Action对象 ![](https://box.kancloud.cn/8bb9e16d4068d909e342ae89862298f2_1248x414.png) ![](https://box.kancloud.cn/b194eb3539ca70c84637c4629fab87f0_1410x498.png) ![](https://box.kancloud.cn/c745c1aae03f22a277d6b11949f03752_694x592.png)