JavaBeat

  • Home
  • Java
    • Java 7
    • Java 8
    • Java EE
    • Servlets
  • Spring Framework
    • Spring Tutorials
    • Spring 4 Tutorials
    • Spring Boot
  • JSF Tutorials
  • Most Popular
    • Binary Search Tree Traversal
    • Spring Batch Tutorial
    • AngularJS + Spring MVC
    • Spring Data JPA Tutorial
    • Packaging and Deploying Node.js
  • About Us
    • Join Us (JBC)
  • Privacy
  • Contact Us

Struts LOGIC Iterate Tag ( <logic:iterate> )

October 16, 2010 by Krishna Srinivasan Leave a Comment

Struts LOGIC Tag Library

Struts LOGIC tag library provides tags that are useful in managing conditional generation of output text, looping over object collections for repetitive generation of output text, and application flow management.

Syntax to use Struts LOGIC tag library

[code lang=”java”]
<%@ taglib prefix="logic" uri="http://struts.apache.org/tags-logic" %>
[/code]

-This tag repeats the nested body content of this tag once for every element of the specified collection, which must be an Iterator or a Collection or a Map (whose values are to be iterated over), or an array. The collection to be iterated must be specified in any of the form like a runtime expression spcified as the value of the collection attribute,as Jsp bean spcified by the name attribute or as the property, specified by the property, of the JSP bean specified by the name attribute
If the collection you are iterating over can contain null values, the loop will still be performed but no page scope attribute (named by the id attribute) will be created for that loop iteration.

Example Code for

1.Create of Modify the index.jsp page which redirects to the action class to set the values.
index.jsp
[code lang=”html”]
< %@page contentType="text/html"%>
< %@page pageEncoding="UTF-8"%>
< jsp:forward page="logiciterate.do">
[/code]
2.Create an Jsp page and name it as LogicIterateTag.jsp.It is the output page for user which contains the logic iterate tag to iterate through the collection and display the result as specified.

LogicIterateTag.jsp

[code lang=”html”]
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<%@taglib prefix="html" uri="http://jakarta.apache.org/struts/tags-html" %>
<%@taglib prefix="bean" uri="http://jakarta.apache.org/struts/tags-bean" %>
<%@taglib prefix="logic" uri="http://jakarta.apache.org/struts/tags-logic" %>

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title> Struts Logic Iterate Tag< /title>
</head>
<body bgcolor="DDDDDD">
<h1> Struts logic:iterate tag< /h1>
<table style="font-weight:bold">
<tr><td>Employee ID</td><td>Employee Name</td></tr>
<logic:iterate id="employee" name="LogicIterateForm" property="emp">
<tr><td><bean:write name="employee" property="empid"/></td>
<td> <bean:write name="employee" property="empname"/></td>
</tr>
</logic:iterate></table>
</body>
</html>
[/code]

3.Create a Employee class Employee.java which contains the details of the employee(employee id and employee name).
[code lang=”java”]

package com.myapp.struts;

public class Employee {
String empid;
String empname;

public String getEmpid() {
return empid;
}

public void setEmpid(String empid) {
this.empid = empid;
}

public String getEmpname() {
return empname;
}

public void setEmpname(String empname) {
this.empname = empname;
}

public Employee(String empid, String empname) {
this.empid = empid;
this.empname = empname;
}

}
[/code]

4.Create a Form bean.Form bean is used to hold the properties of the submitted form which is a sub class of ActionForm.It contains a List of Employee objects which are set from the action class.

LogicIterateForm.java
[code lang=”java”]
package com.myapp.struts;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionMapping;
import org.apache.struts.action.ActionMessage;

public class LogicIterateForm extends org.apache.struts.action.ActionForm {

private List<employee> emp=new ArrayList<employee>();

public List<employee> getEmp() {
return emp;
}

public void setEmp(List<employee> emp) {
this.emp = emp;
}

public LogicIterateForm() {
super();

}

}
[/code]

5.Simple Action class LogicIterateAction.java which is a sub class of Action class used to process the user’s request.Here we create and set the employee objects to the form bean.

LogicIterateAction.java
[code lang=”java”]
package com.myapp.struts;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;
import org.apache.struts.action.ActionForward;

public class LogicIterateAction extends org.apache.struts.action.Action {

private final static String SUCCESS = "success";

public ActionForward execute(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response)
throws Exception {
LogicIterateForm formBean=(LogicIterateForm)form;
ArrayList<employee> list=new ArrayList<employee>();
list.add(new Employee("11A0","Jack"));
list.add(new Employee("11A1","Sam"));
list.add(new Employee("11A2","Joe"));
list.add(new Employee("11A3","John"));
formBean.setEmp(list);
return mapping.findForward(SUCCESS);
}
}
[/code]

6.Create or modify struts config file struts-config.xml with action mappings.Struts-config file contains the information about the configuration of the struts framework to the application.It contains the action mappings which helps to select Action,ActionForm and other information for specific user’s request’s.
[code lang=”xml”]

<?xml version="1.0" encoding="UTF-8" ?>

<!DOCTYPE struts-config PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 1.2//EN"
"http://jakarta.apache.org/struts/dtds/struts-config_1_2.dtd">

< struts-config>
< form-beans>
<form-bean name="LogicIterateForm" type="com.myapp.struts.LogicIterateForm"/>
</form-beans>

< action-mappings>
<action name="LogicIterateForm" path="/logiciterate" scope="session" type="com.myapp.struts.LogicIterateAction" validate="false">
< forward name="success" path="/LogicIterateTag.jsp"/>

</action>
</action-mappings>

</struts-config>

[/code]

6.Building and running the application
Output

Access page:http://localhost:8080/logiciterate/

also read:

  • Struts 2.0 Introduction and Validations using Annotations
  • Introduction to Struts Actions
  • What’s new in Struts 2.0?
  • Internationalization and Taglibs in Struts 1.2

Filed Under: Struts Tagged With: Struts Tags

About Krishna Srinivasan

He is Founder and Chief Editor of JavaBeat. He has more than 8+ years of experience on developing Web applications. He writes about Spring, DOJO, JSF, Hibernate and many other emerging technologies in this blog.

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Follow Us

  • Facebook
  • Pinterest

As a participant in the Amazon Services LLC Associates Program, this site may earn from qualifying purchases. We may also earn commissions on purchases from other retail websites.

JavaBeat

FEATURED TUTORIALS

Answered: Using Java to Convert Int to String

What is new in Java 6.0 Collections API?

The Java 6.0 Compiler API

Copyright © by JavaBeat · All rights reserved