XSS
JSF has always had builtin XSS prevention. You just need to redisplay all user-controlled input (request headers (including cookies!), request parameters (also the ones which are saved in DB!) and request bodies (uploaded text files, etc)) using <h:outputText escape="true">. The attribute escape="true" is by the way already the default setting, you can just omit it. Note that when you're using JSF 2.0 on Facelets, then you can use EL in template text like so:
<p>Welcome, #{user.name}</p>
This will also implicitly be escaped. You don't necessarily need <h:outputText> here. Only when you're redisplaying user-controlled input explicitly using escape="false":
<h:outputText value="#{user.name}" escape="false" />
then you've a potential XSS attack hole.
If you'd like to redisplay user-controlled input as HTML wherein you would like to allow only a specific subset of HTML tags like <b>, <i>, <u>, etc, then you need to sanitize the input by a whitelist. The HTML parser Jsoup is very helpful in this.
CSRF
JSF 2.x has already builtin CSRF prevention in flavor of javax.faces.ViewState hidden field in the form. In JSF 1.x this value was pretty weak and too easy predictable (it was actually never intended as CSRF prevention). In JSF 2.0 this has been improved by using a long and strong autogenerated value instead of a rather predictable sequence value and thus making it a robust CSRF prevention. In JSF 2.2 this will even be further improved by making it a required part of the JSF2 specification. See also JSF spec issue 869.
SQL injection
This is not JSF's responsibility. How to prevent this depends on the persistence API you're using (raw JDBC, modern JPA or good ol' Hibernate), but all boils down that you should never concatenate user-controlled input into SQL strings like so
String sql = "SELECT * FROM user WHERE username = '" + username + "' AND password = md5(" + password + ")";
String jpql = "SELECT u FROM User u WHERE u.username = '" + username + "' AND u.password = md5('" + password + "')";
Imagine what would happen if the enduser chooses the following name:
x'; DROP TABLE user; --
You should always use parameterized queries where applicable.
String sql = "SELECT * FROM user WHERE username = ? AND password = md5(?)";
String jpql = "SELECT u FROM User u WHERE u.username = ?1 AND u.password = md5(?2)";
In plan JDBC you need to use PreparedStatement to fill the parameter values and in JPA (and Hibernate), the Query object offers setters for this as well.