Struts Framework Archive
In this tutorial, we are going to describe the generator tag. The generator tag is a generic tag that is used to generate iterators based on different attributes passed. Here we will not pass any …
In this section, we are going to describe the merge tag. The merge tag is a generic tag that is used to merge iterators. The successive call to the merge iterator causes each merge iterator …
In this example we will discuss about the append tag in the strust2. Append tag is actually combine two iterators into a single iterator. he append tag is a generic tag that is used to …
In this section, we are going to describe the Iterator tag. Iterator tag is used to iterate over a value. An iterable value can be either of: java.util.Collection, java.util.Iterator. Create action classes: First of all …
In this section we are going to discuss the various control tags ( The Control Tags are used for flow control such as if, else and iterate.) ‘If’ tag could be used by itself or …
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 …
We can achieve Zero Configuration in struts2 using java 5 annotations feature. Previously we normally configured struts.xml for all the configurations . The XML file wires up the action names (employee), with ActionSupport classes (EmployeeAction.java), …