equal « Tag « JSP-Servlet Q&A





1. Java Tag Library for compairing two objects via the equals method    stackoverflow.com

In my JSP I'm required to compare to Objects to see if they are equal or not using the Object's equals method. Is there a way to do this using the JSTL ...

2. What is the difference between using "logic:equal" and "logic:notEqual" tags?    stackoverflow.com

For example, I can have a code like:

<logic:equal name="userForm" property="isRishi" value="YES">
  Welcome, your name is Rishi</logic:equal>
And another code like this:
<logic:notEqual name="userForm" property="isRishi" value="NO">
  Welcome, your name is Rishi</logic:notEqual>
Both would ...

3. forEach tag begin equals end issue    coderanch.com