Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8032749
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T01:28:52+00:00 2026-06-05T01:28:52+00:00

While retrieving cookies I need to use: <c:forEach items=${cookie} var=currentCookie> ${currentCookie.value.name} </br> </c:forEach> But,

  • 0

While retrieving cookies I need to use:

<c:forEach items="${cookie}" var="currentCookie">  
    ${currentCookie.value.name} </br>
</c:forEach>

But, while using custom arrays, why we need to skip the .value function?

<c:forEach items="${myList}" var="myList">  
    ${myList.name} </br>
</c:forEach>

Cookie contains a .getValue function() which returns the content of the cookie in string format, so how does using currentCookie.value.name work?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T01:28:54+00:00Added an answer on June 5, 2026 at 1:28 am

    The ${cookie} points to a Map<String, Cookie> with the cookie name as map key and the Cookie object as map value. Every iteration over a Map in <c:forEach> gives you a Map.Entry back which in turn has getKey() and getValue() methods. Your confusion is that the Cookie object has in turn also a getValue() method.

    <c:forEach items="${cookie}" var="currentCookie">  
        Cookie name as map entry key: ${currentCookie.key}<br/>
        Cookie object as map entry value: ${currentCookie.value}<br/>
        Name property of Cookie object: ${currentCookie.value.name}<br/>
        Value property of Cookie object: ${currentCookie.value.value}<br/>
    </c:forEach>
    

    It’s a Map<String, Cookie> because it allows you easy direct access to cookie value when you already know the name beforehand. The below example assumes it to be cookieName:

    ${cookie.cookieName.value}
    

    Your list example is by the way invalid. The var should not refer the same name as the list itself.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i posted some data using tinymce (in a symfony project).while retrieving back how can
I am using durpal 6. while retrieving data i got the following output: |
i am using DateTime.UtcNow to store the date in my database .. while retrieving
I inserted one column in sql with null value from java.while retrieving back it
I have a table columns:Name,Role,Dept A person can have many roles. So while retrieving
I am using http://maps.google.com/maps/api/js?sensor=false to retrieve latitude and longitude for address. While retrieving the
While retrieving items via AJAX etc., the links are set to do this: $(this).click(function(){
When retrieving values from a DataRow is it better to use the column name
I am using sqlite database for iphone app. but its crash on while loop
I've using AsyncTask while retrieving data from a web service. I want to a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.