319

I want to output some HTML code based on some condition in a JSP file.

if (condition 1) {
    Some HTML code specific for condition 1
}
else if (condition 2) {
    Some HTML code specific for condition 2
}

How can I do that? Should I use JSTL?

BalusC
  • 1,082,665
  • 372
  • 3,610
  • 3,555
copenndthagen
  • 49,230
  • 102
  • 290
  • 442
  • 1
    Exampledepot has some nice examples. Have a look > http://exampledepot.8waytrips.com/egs/javax.servlet.jsp.jstl.core/if.html – darkapple May 09 '11 at 11:10
  • 1
    Possible duplicate of [How to use if-else option in JSTL](https://stackoverflow.com/questions/4587397/how-to-use-if-else-option-in-jstl) – Alex K Oct 16 '18 at 19:15

13 Answers13

604

Should I use JSTL ?

Yes.

You can use <c:if> and <c:choose> tags to make conditional rendering in jsp using JSTL.

To simulate if , you can use:

<c:if test="condition"></c:if>

To simulate if...else, you can use:

<c:choose>
    <c:when test="${param.enter=='1'}">
        pizza. 
        <br />
    </c:when>    
    <c:otherwise>
        pizzas. 
        <br />
    </c:otherwise>
</c:choose>
Andrea Ligios
  • 49,480
  • 26
  • 114
  • 243
jmj
  • 237,923
  • 42
  • 401
  • 438
  • Thx for that...Actually I am more into UI dev...So do not have much knowledge of JSTL..Could you please provide me a similar working example of JSTL..I mean for if..else – copenndthagen May 09 '11 at 11:04
  • Thx for the example..The condition I have is actually a JS condition..if navigator.userAgent.match(/iPad/i) != null So can I write that directly in the if test="condition".. – copenndthagen May 09 '11 at 11:07
  • 1
    well JSTL will execute at server end it will crate HTML out of it and pass it to client – jmj May 09 '11 at 11:19
  • Ok..that's fine...But for the actual condition i.e.in the test="condition" ...Can I specify any JS condition and if yes, can I write it directly e.g. Can I write – copenndthagen May 09 '11 at 11:20
  • can you update your question with the condition you want to test – jmj May 09 '11 at 11:21
181

If you just want to output different text, a more concise example would be

${condition ? 'some text when true' : 'some text when false'}

It is way shorter than c:choose.

Ian Boyd
  • 246,734
  • 253
  • 869
  • 1,219
KIR
  • 5,614
  • 1
  • 31
  • 23
114

The construct for this is:

<c:choose>
   <c:when test="${..}">...</c:when> <!-- if condition -->
   <c:when test="${..}">...</c:when> <!-- else if condition -->
   <c:otherwise>...</c:otherwise>    <!-- else condition -->
</c:choose>

If the condition isn't expensive, I sometimes prefer to simply use two distinct <c:if tags - it makes it easier to read.

Bozho
  • 588,226
  • 146
  • 1,060
  • 1,140
12

In case you want to compare strings, write the following JSTL:

<c:choose>
    <c:when test="${myvar.equals('foo')}">
        ...
    </c:when>
    <c:when test="${myvar.equals('bar')}">
        ...
    </c:when>
    <c:otherwise>
        ...
    </c:otherwise>
</c:choose>
aebersold
  • 11,286
  • 2
  • 20
  • 29
  • I think you can only invoke methods (like .equals) on new(ish) containers, like Tomcat 7+. – Ring Jul 21 '14 at 17:29
12
<%@ taglib prefix='c' uri='http://java.sun.com/jsp/jstl/core' %>
<c:set var="val" value="5"/>
<c:choose> 
  <c:when test="${val == '5'}">
    Value is 5
  </c:when>
  <c:otherwise>
    Value is not 5
  </c:otherwise>
</c:choose>
Hiren Odedra
  • 193
  • 1
  • 3
8

simple way :

<c:if test="${condition}">
    //if
</c:if>
<c:if test="${!condition}">
    //else
</c:if>
Milad Heidari
  • 191
  • 4
  • 7
5

You can write if-else condition inside <% %> in jsp pages and html code outside of <% %>

For example:

   <%
        String username = (String)session.getAttribute("username");
        if(username==null)  {
    %>            
        <p> username is null</p> //html code
    <%
        } else {
    %>
        <p> username is not null</p> //html code
    <%
        }
    %>
Shivam
  • 103
  • 3
  • 7
4
<%@ taglib prefix='c' uri='http://java.sun.com/jsp/jstl/core' %>
<c:set var="isiPad" value="value"/>
<c:choose>
   <!-- if condition -->
   <c:when test="${...}">Html Code</c:when> 
   <!-- else condition -->
   <c:otherwise>Html code</c:otherwise>   
</c:choose>
aristotll
  • 8,694
  • 6
  • 33
  • 53
2
<c:if test="${any_cond}" var="condition">
    //if part
</c:if>
<c:if test="${!condition}">
    //else part
</c:if>
Sachin Kumar
  • 1,055
  • 9
  • 15
0

If you want to do the following by using JSTL Tag Libe, please follow the following steps:

[Requirement] if a number is a grater than equal 40 and lower than 50 then display "Two digit number starting with 4" otherwise "Other numbers".

[Solutions]

1. Please Add the JSTL tag lib on the top of the page.`
     <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>`

2. Please Write the following code
`
<c:choose>
       <c:when test="${params.number >=40 && params.number <50}">
              <p> Two digit number starting with 4. </p>
       </c:when>
       <c:otherwise>
              <p> Other numbers. </p>
       </c:otherwise>
  </c:choose>`
0

In case you want to compare strings, write the following JSTL :

<c:choose>
    <c:when test="${myvar.equals('foo')}">
        ...
    </c:when>
    <c:when test="${myvar.equals('bar')}">
        ...
    </c:when>
    <c:otherwise>
        ...
    </c:otherwise>
</c:choose>
Codekie
  • 7,574
  • 3
  • 18
  • 26
0
<c:choose>
<c:when test="${not empty userid and userid ne null}">
      <sql:query dataSource="${dbsource}" var="usersql">
                SELECT * FROM newuser WHERE ID = ?;
                <sql:param value="${param.userid}" />
      </sql:query>
 </c:when>
 <c:otherwise >
       <sql:query dataSource="${dbsource}" var="usersql">
                 SELECT * FROM newuser WHERE username = ?;
                 <sql:param value="${param.username}" />
       </sql:query>                              
  </c:otherwise>

Aman Kumar
  • 31
  • 3
0
<c:if test="${condition1 && condition2 && condition3}" var="condition">
    //if
</c:if>
<c:if test="${!condition}">
    //else
</c:if>

This is an another way to take the if condition in a variable.

Sachin Kumar
  • 1,055
  • 9
  • 15