Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在我的jsp中做这样的事情(使用spring和struts):
<security:authorize ifAllGranted="ACCESS_<s:property value='%{#attr.currentQueue}'/>">
遗憾的是,它似乎不起作用,因为我现在看不到我应该看到的内容。但是,也没有错误。
知道它是否应该工作吗?方法不对吗?
使用另一个 Struts OGNL 解决了这个问题: ${currentQueue} 而不是使用属性标签。这使 :
<security:authorize ifAllGranted="ACCESS_${currentQueue}">