-1

我刚刚在我的系统中构建了 spring-security-acl,如何从我的 xhtml 页面调用“hasPermission”el 函数?

例如

<f:subview rendered="#{hasPermission(object,'read')}">
   HELLO
</f:subview>

我只是得到

javax.el.ELException: Function 'sec:hasPermission' not found

我在tomcat上运行

4

1 回答 1

1

为 spring-security 函数定义一个 taglib。然后使用表达式语言访问 spring 函数,如#{prefix:function(params)}

请参阅链接Spring Security Taglib and JSF

于 2012-05-16T10:53:22.597 回答