JSF HTML Tag Reference

In this section, you will learn more about html tags provided in JSF. JSF
HTML tags are used for design the page by using server side code. This tag is
used by specifying the uri and prefix attribute of the taglib directive at the
top of your JSP file. These are illusrated below as follows:
http://java.sun.com/jsf/html
This is the uri for the JSF html tags. And for the prefix value commonly "h"
is used but you can put anything as value of the prefix attribute of the taglib
directive. When you declare any html tag as a JSF tag then you should write the
tag as follows:
<htmlprefixvalue:tagName attribute1="value" attribute2="value"></htmlprefixvalue:tagName
attribute1="value" attribute2="value">.
This is the syntax of specifying the html tag as a jsf tag. You can take an
example of creation an input box by using jsf html tag as follows:
If the prefix value is "h" then the syntax will be seen like : <h:inputText
value="This is a text box."></h:inputText>.
All the html tags have been used in the Rose India JSF Tutorial as you will
get one by one ahead. You can skip for next section for getting html tags
overview with complete code examples that can be used directly in your web
application for creating several html components as the need of your
application.

|
Current Comments
3 comments so far (post your own) View All Comments Latest 10 Comments:I have problem at running JSF program,it shows following exception
org.apache.jasper.JasperException: Exception in JSP: /inputname.jsp:3
1: <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
2: <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
3: <f:loadBundle
4: basename="javajazzup.messages"
5: var="message"/>
6: <f:view>
Stacktrace:
org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:451)
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:373)
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:329)
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:265)
javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
root cause
java.lang.NullPointerException
com.sun.faces.taglib.jsf_core.LoadBundleTag.doStartTag(LoadBundleTag.java:96)
org.apache.jsp.inputname_jsp._jspx_meth_f_005floadBundle_005f0(inputname_jsp.java:97)
org.apache.jsp.inputname_jsp._jspService(inputname_jsp.java:69)
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:98)
javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:331)
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:329)
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:265)
javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
what can i do for these exception plz tell me.
Posted by viswanath on Friday, 08.15.08 @ 17:28pm | #72963
I have problem at running JSF program,it shows following exception
org.apache.jasper.JasperException: Exception in JSP: /inputname.jsp:3
1: <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
2: <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
3: <f:loadBundle
4: basename="javajazzup.messages"
5: var="message"/>
6: <f:view>
Stacktrace:
org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:451)
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:373)
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:329)
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:265)
javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
root cause
java.lang.NullPointerException
com.sun.faces.taglib.jsf_core.LoadBundleTag.doStartTag(LoadBundleTag.java:96)
org.apache.jsp.inputname_jsp._jspx_meth_f_005floadBundle_005f0(inputname_jsp.java:97)
org.apache.jsp.inputname_jsp._jspService(inputname_jsp.java:69)
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:98)
javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:331)
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:329)
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:265)
javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
what can i do for these exception plz tell me.
thanks&Regrads
PrakasamVenkatachalam
Posted by prakasam on Saturday, 10.13.07 @ 17:12pm | #33482
It's really good tutorial to start the JSF with mimimum time.
Posted by Senthil on Tuesday, 05.1.07 @ 00:56am | #15112