I have a backingBean with following method (signature):
public class SessionBean {
...
public boolean subjectIsPermitted(final String permission);
...
}
In my jsf-template, I want to call this method dynamically, like this:
${sessionBean.subjectIsPermitted('company:manage:'company.id)}
Well, this concatenation within the method-call does throw a com.sun.el.parser.ParseException. Using "+" or "." to concat the String does not help, too.
How do I concat a String with a variable inside an EL-method-call?