Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have currently login User object (userId,organisationId,etc.. ) stored in session by using like this.

session.setAttribute("user", LoginUser);

Where my LoginUser is User object with detail information.

In my next jsp page, I want to check the user's organisationId by calling from Session.

<s:property value="%{#session.user.organisationId}"/>

How can I check the organisationId in property value is 0 or etc., and do things according to various IDs?

How can I check using c:choose?

Thanks.

share|improve this question

3 Answers

up vote 3 down vote accepted
<c:choose>
  <c:when test="${user.organizationId == 1}">
        <!-- do something -->
  </c:when>
  <c:otherwise>
        <!-- do something different -->
  </c:otherwise>
</c:choose>
share|improve this answer
I tried ur code too, always goes to otherwise condition. any ideas? – kitokid Sep 2 '11 at 1:59
try printing its value and debug – Jigar Joshi Sep 2 '11 at 5:36
thanks.my bad. I didn't have the right value before checking the condition. – kitokid Sep 2 '11 at 10:10
you are welcome :) – Jigar Joshi Sep 2 '11 at 10:11

Using JSTL, either <c:if> conditional tag:

<c:if test="${sessionScope.user.organisationId == 0}">

</c:if>

Or using <c:choose> conditional tag:

<c:choose>
    <c:when test="${sessionScope.user.organisationId == 0}">
        <!-- true -->
    </c:when>
    <c:otherwise>
        <!-- false -->
    </c:otherwise>
</c:choose>
share|improve this answer
it still doesn't work. I think still something wrong with mine. I used c: choose but, it always goes to otherwise condition. any ideas? – kitokid Sep 2 '11 at 1:58
<s:if test="#session.user.organisationId == 0">
 <p>I'm Zero.</p>
</s:if>
<s:elseif test="#session.user.organisationId == 1">
 <p>I am One.</p>
</s:elseif>
<s:else>
    <p>I not either of these things.</p>
</s:else>

organisationId must be a numeric type.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.