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 8186669
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T02:17:27+00:00 2026-06-07T02:17:27+00:00

I know you have to synchronize around anything that would change the structure of

  • 0

I know you have to synchronize around anything that would change the structure of a hashmap (put or remove) but it seems to me you also have to synchronize around reads of the hashmap otherwise you might be reading while another thread is changing the structure of the hashmap.

So I sync around gets and puts to my hashmap.
The only machines I have available to me to test with all only have one processor so I never had any real concurrency until the system went to production and started failing. Items were missing out of my hashmap. I assume this is because two threads were writing at the same time, but based on the code below, this should not be possible. When I turned down the number of threads to 1 it started working flawlessly, so it’s definitely a threading problem.

Details:

// something for all the threads to sync on
private static Object EMREPORTONE = new Object();


    synchronized (EMREPORTONE)
      {
        reportdatacache.put("name.." + eri.recip_map_id, eri.name);
        reportdatacache.put("subjec" + eri.recip_map_id, eri.subject);
        etc...
      }

… and elsewhere….

    synchronized (EMREPORTONE)
      {
        eri.name = (String)reportdatacache.get("name.." + eri.recip_map_id);
        eri.subject = (String)reportdatacache.get("subjec" + eri.recip_map_id);
        etc...
      }

and that’s it. I pass around reportdatacache between functions, but that’s just the reference to the hashmap.

Another important point is that this is running as a servlet in an appserver (iplanet to be specific, but I know none of you have ever heard of that)

But regardless, EMREPORTONE is global to the webserver process, no two threads should be able to step on each other, yet my hashmap is getting wrecked. Any thoughts?

  • 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-07T02:17:29+00:00Added an answer on June 7, 2026 at 2:17 am

    In servlet container environment static variables depend on classloader. So you may think that you’re dealing with same static instance, but in fact it could be completely different one.

    Additionally, check if you do not use the map by escaped reference elsewhere and write/remove keys from it.

    And yes, use ConcurrentHashMap instead.

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

Sidebar

Related Questions

I know we have ILdasm, but is there any tool out there that will
I know you have to synchronize your threads to be able to change your
I know there have been some similar questions to this, but they haven't helped
I know I have that my connection to the database works, and a test
I know and have Xcode, but I was wondering if there were any other
I know people have asked similar questions, but I believe the causes of their
I know there have been a million questions asking this, but mine is different.
Does anyone know there have any other way that (by not using json_encode and
I would like to know how I can synchronize an mp3 file, a text
i have a script to synchronize/output my mysql database with another server. i know

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.