如何将自定义权限评估程序添加到oauth表达式处理程序

时间:2014-09-19 08:13:09

标签: security oauth spring-security

我知道以下是添加自定义权限评估程序的方法

    

            

我的问题是我使用oauthexpressionhandler,如下所示

             

<oauth:expression-handler id="oauthExpressionHandler"/ >

我尝试添加自定义权限评估程序,如下所示

<sec:global-method-security pre-post-annotations="enabled" secured-annotations="enabled"  proxy-target-class="true">
    <sec:expression-handler ref="oauthExpressionHandler" />
</sec:global-method-security>

<oauth:expression-handler id="oauthExpressionHandler" >
    <property name="permissionEvaluator" ref="permissionEvaluator"/>
</oauth:expression-handler>

但是我收到了以下错误 元素&#39; oauth:表达式处理程序&#39;必须没有字符或元素信息项[children],因为类型的内容类型为空。当我尝试调用API时

请告诉我如何在使用oauth表达式处理程序时添加权限评估程序。

此致 普利文

0 个答案:

没有答案