Equivalent Spring custom Collection property editor when using JSF
问题 I would like to know how to use Converters in Java Server Faces similar to Spring collection property editor Suppose the following model public class Group { private String name; List<User> users = new ArrayList<User>(); // getter's and setter's } And equivalent form <form ...> <h1>Group form</h1> <label for="name">Enter name</label> <input type="text" name="name"/> <label for="users">Select users</label> <!--value attribute stores userId--> <input type="checkbox" value="1" name="users"/>