It looks to me like composite components\' attributes don\'t allow generic types. Here\'s a simple test case:
If I had a managed bean as follows: @ManagedBean @RequestSchoped public class Example { private List<String> stringList;
I am using composite components in my JSF 2.0 project, and I want to combine my composite components withlike this:
I\'m creating a simple menuing composite component in JSF 2.However, I am unable to pass a String attribute into the composite component to use in the action attribute of the <h:commandLink>.My
I am starting development on a new web application which uses JSF 2 as the view technology. I have no prior experience with JSF and am a bit confused about the concepts.