I have a question about outputing a list of objects as a comma separated list in JSF.
Let\'s say:
public class SomeObj { private String name; ...
use (from facelets). It's similar to c:forEach
c:forEach
Or pre-compute the comma-separated string in the managed bean, and obtain it via a getter.