Spring安全:动态角色

时间:2012-09-13 14:05:57

标签: spring security dynamic struts roles

我想在我的jsp(使用spring和struts)中做类似的事情:

<security:authorize ifAllGranted="ACCESS_<s:property value='%{#attr.currentQueue}'/>">

可悲的是,它似乎没有用,因为我看不到我现在应该看到的内容。但是,也没有错误。

知道它是否应该有效?方法有误吗?

1 个答案:

答案 0 :(得分:0)

使用另一个Struts OGNL解决问题:$ {currentQueue}而不是使用属性标记。这给出了:

<security:authorize ifAllGranted="ACCESS_${currentQueue}">