我是靠谱客的博主 可爱画笔,这篇文章主要介绍struts2对Ognl的封装--MemberAccess,现在分享给大家,希望可以做个参考。

Ognl的扩展点:

http://java12345678.iteye.com/blog/2031790

 

MemberAccess接口

 定义了对于Memeber(Constructor,Method,Filed是否可以访问),Ognl默认实现DefaultMemberAccess对非公有Member不可以访问。

 Struts2对DefaultMemberAccess进行了扩展:在DefaultMemberAccess的非公有Member不可以访问的基础上,添加哪些公有Member可以访问或不可被访问

 

 


 一、参数决定哪些Memeber可以访问

  1.静态方法是否可以访问:由boolean型构建参数决定

        

复制代码
1
2
3
public SecurityMemberAccess(boolean method) { allowStaticMethodAccess = method; }

 

2.哪些公有Member不可以访问:由属性Set<Pattern> excludeProperties决定

3.哪些公有Member可以访问:Set<Pattern> acceptProperties

4.由PropertiesJudge propertiesJudge对象决定某个Memeber是否可以访问

 

    程序代码中的判断:

   

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
protected boolean isAcceptableProperty(String name) { if ( name == null) { return true; } //属性名propertyName 不匹配excludeProperties //属性名propertyName 匹配acceptProperties //如果存在propertiesJudge ,则acceptProperty返回true //全满足才能访问 if ((!isExcluded(name)) && isAccepted(name) && (propertiesJudge == null || propertiesJudge.acceptProperty(name))) { return true; } return false; }

 

二、参数的由来:OgnlValueStack

  

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
public class OgnlValueStack{ transient SecurityMemberAccess securityMemberAccess; protected void setRoot(XWorkConverter xworkConverter, CompoundRootAccessor accessor, CompoundRoot compoundRoot, boolean allowStaticMethodAccess) { //省略了部分代码 this.securityMemberAccess = new SecurityMemberAccess(allowStaticMethodAccess); this.context = Ognl.createDefaultContext(this.root, accessor, new OgnlTypeConverterWrapper(xworkConverter), securityMemberAccess); } public void setAcceptProperties(Set<Pattern> acceptedProperties) { securityMemberAccess.setAcceptProperties(acceptedProperties); } public void setPropertiesJudge(PropertiesJudge judge) { securityMemberAccess.setPropertiesJudge(judge); } public void setExcludeProperties(Set<Pattern> excludeProperties) { securityMemberAccess.setExcludeProperties(excludeProperties); } }

 

  

 OgnlValueStack 由OgnlValueStackFactory构建:

 

复制代码
1
2
3
4
5
6
public class OgnlValueStackFactory implements ValueStackFactory{ @Inject(value="allowStaticMethodAccess", required=false) public void setAllowStaticMethodAccess(String allowStaticMethodAccess) { this.allowStaticMethodAccess = "true".equalsIgnoreCase(allowStaticMethodAccess); } }

 

 

最后

以上就是可爱画笔最近收集整理的关于struts2对Ognl的封装--MemberAccess的全部内容,更多相关struts2对Ognl内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(77)

评论列表共有 0 条评论

立即
投稿
返回
顶部