Struts2的Xwork2部分之OgnlValueStack的set与setValue的区别

编程技术  /  houtizong 发布于 3年前   42

今天早上一朋友向我咨询Struts2的Xwork2部分之OgnlValueStack的set与setValue的区别。

 

struts2版本:struts2.3.4.1

 

1、set(key, value)的实现

 public void set(String key, Object o) {        //set basically is backed by a Map pushed on the stack with a key being put on the map and the Object being the value        Map setMap = retrieveSetMap();        setMap.put(key, o);    }    private Map retrieveSetMap() {        Map setMap;        Object topObj = peek();        if (shouldUseOldMap(topObj)) {            setMap = (Map) topObj;        } else {            setMap = new HashMap();            setMap.put(MAP_IDENTIFIER_KEY, "");            push(setMap);        }        return setMap;    }

 set()的实现其实是构造一个Map(里边有一个特殊的key,MAP_IDENTIFIER_KEY),然后把key-value放入此map。通过如下代码可看出:

ActionContext ctx = ActionContext.getContext();ValueStack vs = ctx.getValueStack();vs.peek();

 

2、setValue(String expr, Object value)的实现其实最终委托给如下:

private void trySetValue(String expr, Object value, boolean throwExceptionOnFailure, Map<String, Object> context, boolean evalExpression) throws OgnlException {        context.put(XWorkConverter.CONVERSION_PROPERTY_FULLNAME, expr);        context.put(REPORT_ERRORS_ON_NO_PROP, (throwExceptionOnFailure) ? Boolean.TRUE : Boolean.FALSE);        ognlUtil.setValue(expr, context, root, value, evalExpression);}

javadoc: 

    /**     * Attempts to set a property on a bean in the stack with the given expression using the default search order.     *     * @param expr  the expression defining the path to the property to be set.     * @param value the value to be set into the named property     */

 即从栈的顶部往下找,找到第一个匹配的赋值然后结束,不同于set()。

 

总结:

set(key, value):首先查找栈顶的一个特殊Map(里边有一个特殊的key,MAP_IDENTIFIER_KEY),如果找不到就创建一个,然后把对应的key-value放入。

 

setValue(String expr, Object value):从栈的顶部往下找,找到第一个匹配ognl表达式的赋值然后结束。

 

思考:

如下代码中我们往栈中添加了多少个对象?(不包括默认的添加的)

 

ActionContext ctx = ActionContext.getContext();ValueStack vs = ctx.getValueStack();UserModel user = new UserModel();user.setUuid(123);vs.set("uuid", 456);vs.push(user);vs.set("uuid", 567);

答案:3个。

1、vs.set("uuid", 456);  第一个肯定往栈中压个Map

2、vs.push(user); 第二个 往栈中压user

3、vs.set("uuid", 567); 第三个 因为栈顶是user,所以再压一个

 

 

如何鉴定:可以通过vs.findValue("[0]")获取栈中数据,具体去参考struts2的官方文档。

 

ognl表达式中的:

[0]表示截取栈中从0位置开始的子集合; 假设栈中的数据是[a,b] 则结果就是[a,b]

[1]表示截取栈中从1位置开始的子集合; 假设栈中的数据是[a,b] 则结果就是[b]

以此类推。

 

 

[1].top表示截取栈中从1位置开始的子集合 并返回顶部对象(集合中的栈顶对象),即第一个。

 

此时大家可以在如jsp页面中使用:

s:debug 或者如下代码校验

 

<s:property value="[0].top.uuid"/>

<s:property value="[1].top.uuid"/>

<s:property value="[2].top.uuid"/>

 

请勿发布不友善或者负能量的内容。与人为善,比聪明更重要!

留言需要登陆哦

技术博客集 - 网站简介:
前后端技术:
后端基于Hyperf2.1框架开发,前端使用Bootstrap可视化布局系统生成

网站主要作用:
1.编程技术分享及讨论交流,内置聊天系统;
2.测试交流框架问题,比如:Hyperf、Laravel、TP、beego;
3.本站数据是基于大数据采集等爬虫技术为基础助力分享知识,如有侵权请发邮件到站长邮箱,站长会尽快处理;
4.站长邮箱:[email protected];

      订阅博客周刊 去订阅

文章归档

文章标签

友情链接

Auther ·HouTiZong
侯体宗的博客
© 2020 zongscan.com
版权所有ICP证 : 粤ICP备20027696号
PHP交流群 也可以扫右边的二维码
侯体宗的博客