Logic Equal Tag (...)

equal tag - if the requested variable is equal to the specified value then this tag is used to evaluate the contents contained in the nested body parts of this tag.

Compares the variable passed against the specified constant value. The nested body content of this tag is evaluated if the variable and value are equal.

Attribute Name Description
cookie

The variable contains the cookie value needed to compare .Here the name is specified by this attribute.

header

The variable contains the header value needed to compare whose name is specified by this attribute. The name match is performed in a case insensitive manner.

name

The variable to be compared is the JSP bean specified by this attribute, if property is not specified, or the value of the specified property of this bean, if property is specified.

parameter

The variable to be compared is the first, or only, value of the request parameter specified by this attribute.

property

The variable contains the bean property value needed to compare ,it is specified by this attribute. The property reference can be simple, nested, and/or indexed.

scope

This specifies the bean scope within which the bean is searched by the name property, or "any scope" if not specified.

value

The constant value is specified by other attribute(s) of this tag, needed to compare

Logic notEqual Tag (...)

notEmpty - if the requested variable is not equal to the specified value then this tag is used to evaluate the contents contained in the nested body parts of this tag.

Compares the variable passed against the specified constant value. The nested body content of this tag is evaluated if the variable and value are not equal.

Attributes of notEmpty Tag

Attribute Name Description
cookie

The variable contains the cookie value needed to compare .Here the name is specified by this attribute.

header

The variable contains the header value needed to compare whose name is specified by this attribute. The name match is performed in a case insensitive manner.

name

The variable to be compared is the JSP bean specified by this attribute, if property is not specified, or the value of the specified property of this bean, if property is specified.

parameter

The variable to be compared is the first, or only, value of the request parameter specified by this attribute.

property

The variable contains the bean property value needed to compare ,it is specified by this attribute. The property reference can be simple, nested, and/or indexed.

scope

This specifies the bean scope within which the bean is searched by the name property, or "any scope" if not specified.

value

The constant value is specified by other attribute(s) of this tag, needed to compare

Example Illustrating the use of the Equal and the notEqual logic tags.

Here you will learn to use the Struts Logic Equal and notEqual tags. We will cover an example that will show a comparison between the two logic tags (ie.. and the ).

Example code

Creating an Action Class

Develop a simple action class LogicAction.java.

package roseindia.net;

import java.io.*;
import java.util.*;

/**

* @author Amit Gupta
* @Web http://www.roseindia.net
* @Email struts@roseindia.net

**/
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.ServletException;
import org.apache.struts.action.*;

public class LogicAction extends Action
{
public ActionForward execute(ActionMapping mapping,
ActionForm form,
HttpServletRequest request,
HttpServletResponse response)
throws IOException, ServletException {



return mapping.findForward("success");
}
}

Creating Form Bean

Our form bean class contains only one property number. Here is the code of FormBean (LogicForm.java)

package roseindia.net;

import org.apache.struts.action.*;

/**

* @author Amit Gupta
* @Web http://www.roseindia.net
* @Email struts@roseindia.net

**/

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

public class LogicForm extends ActionForm
{

private long number;
public long getNumber()
{
return number;
}

public void setNumber(long number)
{
this.number=number;
}




}

Defining form Bean in struts-config.xml file

Add the following entry in the struts-config.xml file for defining the form bean

LogicForm" type="roseindia.net.LogicForm" />

Developing the Action Mapping in the struts-config.xml

Here, Action mapping helps to select the method from the Action class for specific requests.



Developing the InputLogic.jsp page

<%@ taglib uri="/tags/struts-html" prefix="html" %>
<%@ taglib uri="/tags/struts-logic" prefix="logic" %>



Using <logic> Tags



Using <logic> Tags





Enter a number:






The <logic:Equal>tag works if you enter 1



else The <logic:notEqual> is processed













Developing the output.jsp page

<%@ taglib uri="/tags/struts-bean" prefix="bean" %>
<%@ taglib uri="/tags/struts-logic" prefix="logic" %>



Here's Your Data...



Here's Your Data...



The number entered is:



equal name="LogicForm" property="number" value="1">

Using the tag <logic:equal >


Result : Equal
equal>

notEqual name="LogicForm" property="number" value="1">

Using the tag <logic:notEqual >


Result : notEqual
notEqual>



Add the following line in the index.jsp to call the form.


  • Struts File Upload


    Example demonstrates how LogicAction Class works.

  • Building and Testing the Example

    To build and deploy the application go to Struts\Strutstutorial directory and type ant on the command prompt. This will deploy the application. Open the browser and navigate to the InputLogic.jsp page. Your browser displays the following page.

    Writing value equal to1 to the InputLogic.jsp page displays the working of the Equal Logic tag

    It displays the following out.jsp page

    Now write any data other than 1 to the InputLogic.jsp to see the working of the notEqual logic tag

    The evaluated here displays the output.jsp as

    0 comments:

    Post a Comment