Struts2 - Label Tag (Form Tags)

In this section, we are going to describe the label tag. The label tag is a UI tag that is used to render an HTML LABEL that allows us to output label:name type of combinations that has the same format treatment as the rest of UI controls.

Add the following code snippet into the struts.xml file.

struts.xml
<action name="labelTag">
   <result>/pages/uiTags/labelTag.jsp</result>
</action>


Create a jsp using the tag <s:label>. It renders an HTML LABEL that allows us to output <s: label name=" " value=" " /> combination that has the same format treatment as the rest of UI controls.

labelTag.jsp

<%@ taglib prefix="s" uri="/struts-tags" %>
<html>
  <head>
  <title>Label Tag Example!</title>
  </head>
  <body>
  <h1><span style="background-color: #FFFFcc">Label Tag Example
</span></h1>
  <s:form>
  <s:label name="name" value= "Name" />
  <s:label name="roll" value= "Roll" />
  <s:label name="address" value= "Address: " />
  </s:form>
  </body>
</html>


Output of the labelTag.jsp: