I am trying to implement a custom method by extending WebSecurityExpressionRoot for use in a sec:autorize taglig as follows:
<sec:authorize access="uiAuthz('allevents', 'myVal')">
...
</sec:authorize>
The implementation is as:
public class CustomWebSecurityExpressionRoot extends WebSecurityExpressionRoot {
public boolean uiAuthz(String uiElement, String val) {
...
}
...
}
However, whatever I try, the arguments to uiAuthZ method are always seen as a single String argument "'allevents, myVal'".
Is there any way I can actually get Spring Security framework to parse them as multiple arguments?
It might seem that I can use StringTokenizer etc. for a simple case as in the example above but things on when I have to pass a ArrayList of Strings.
How are you integrating your CustomWebExpressionRoot with the application? To do this you need to ensure to create a custom WebExpressionHandler that registers the custom root. For example:
CustomExpressionHandler.java
security.xml
You can find a complete example at https://github.com/rwinch/spring-security-sample/tree/custom-webexpressionroot