In this tutorial we will discuss about the control tags in struts2. The Struts 2 tags have a set of tags that make it easy to control the flow of page execution. Following is the list of important Struts 2 Control Tags:
These tags perform basic condition flow found in every language. ‘If’ tag could be used by itself or with ‘Else If’ Tag and/or single/multiple ‘Else’ Tag as shown below:
<s:if test="%{#name=='Dinesh'}"> This is Male Category </s:if> <s:elseif test="%{#name=='Sweety'}"> This is Female Category </s:elseif> <s:else> Other Category </s:else>
Click here for detail example.
These iterator will iterate over a value. An iterable value can be any of: java.util.Collection, java.util.Iterator. While iterating over an iterator, you can use Sort tag to sort the result or SubSet tag to to get a sub set of the list or array.
The following example retrieves the value of the getUsers() method of the current object on the value stack and uses it to iterate over. The tag prints out the current value of the iterator.
<s:iterator value="users"> <p>User Name is: <s:property name="userName"/></p> </s:iterator>
These append tag take two or more lists as parameters and append them all together as shown below:
<s:append var="myAppendIterator"> <s:param value="%{myList1}" /> <s:param value="%{myList2}" /> <s:param value="%{myList3}" /> </s:append> <s:iterator value="%{#myAppendIterator}"> <s:property /> </s:iterator>
Click here for detail Example.
These merge tag take two or more lists as parameters and merge them all together as shown below:
<s:merge var="myMergedIterator"> <s:param value="%{myList1}" /> <s:param value="%{myList2}" /> <s:param value="%{myList3}" /> </s:merge> <s:iterator value="%{#myMergedIterator}"> <s:property /> </s:iterator>
Click here for Detail Example.
These generator tag generates an iterator based on the val attribute supplied. Following generator tag generates an iterator and print it out using the iterator tag.
<s:generator val="%{'dinesh,sweety,aadesh,vinesh,sandhya'}"> <s:iterator> <s:property /><br/> </s:iterator> </s:generator>
Click here for detail Example.
Struts 2 sort tag is used to sort a List using a java.util.Comparator. In this example, we will create 6 Users objects and add all into an ArrayList, and use the sort tag to sort the ArrayList based on the User’s property.
<s:sort comparator="#userNameComparator" source="users"> <ol> <s:iterator> <li><s:property value="userName" />, <s:property value="userName" />, <s:property value="age" /> </li> </s:iterator> </ol> </s:sort>
A JSP page to show the use of subset tag to output a subset of an iterator
<s:subset source="myList"> <s:iterator> <s:property /><br> </s:iterator> </s:subset>
Click here for detail Example.
Strategy Design Patterns We can easily create a strategy design pattern using lambda. To implement…
Decorator Pattern A decorator pattern allows a user to add new functionality to an existing…
Delegating pattern In software engineering, the delegation pattern is an object-oriented design pattern that allows…
Technology has emerged a lot in the last decade, and now we have artificial intelligence;…
Managing a database is becoming increasingly complex now due to the vast amount of data…
Overview In this article, we will explore Spring Scheduler how we could use it by…