I would like to create table which can display data from database into JSF page. I found this code:
You have to inlude the correct taglib for the f prefix.
Here is an example for a JSF 2.2 Facelet page:
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
xmlns:h="http://xmlns.jcp.org/jsf/html"
xmlns:f="http://xmlns.jcp.org/jsf/core">
...
</html>
In case you're still on JSF 2.0/2.1, use java.sun.com
domain instead of xmlns.jcp.org
domain in XML namespace.
I recommend to read a JSF tutorial, you can find links in our JSF wiki page.
Replacing the f
with h
won't work, since there's no h:facet
(in the JSF html taglib which is likely to be assigned to the h
prefix). You'll have to include the appropriate taglib (JSF core) and assign it to the f
prefix.
Include taglib. <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>