| 1. |
What Are Different Struts2 Tags? How Can We Use Them? |
|
Answer» Struts2 provides a LOT of custom TAGS that we can USE in result pages to create views for client request. These tags are broadly divided into three categories- DATA tags, Control tags and UI tags. We can use these tags by adding these in JSP pages USING taglib directive. < %@ taglib uri="/struts-tags" prefix="s" % >> Struts2 provides a lot of custom tags that we can use in result pages to create views for client request. These tags are broadly divided into three categories- Data tags, Control tags and UI tags. We can use these tags by adding these in JSP pages using taglib directive. < %@ taglib uri="/struts-tags" prefix="s" % >> |
|