Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

java.util.TimeZone.getTimeZone(id) is a method to obtain a timezone based on an id. While I was using the class I opened it with a decompiler and noticed that it is synchronized. And since it is static, this means that no two threads can invoke the method at the same time. This could be very painful if multiple threads (in a web application for example) are often getting timezones. Why does it have to be synchronized?

Then I realized that the documentation doesn't say anything about synchronization. So, my decompiler could be wrong. Then I opened the source, and it is synchronized. Why this is not documented? I'm aware that javadoc doesn't include the synchronized keyword, but it could have been mentioned.

The solution, of course, is to use joda-time DateTimeZone

share|improve this question
Is this causing a performance issue in your code, or are you just wondering what the authors of java.util were smoking? – bwawok Apr 15 '11 at 21:17
the 2nd thing for sure. It is not causing any performance issues that I know of, but that's because I don't have many concurrent connections. But unnecessary synchronization is certainly something to avoid – Bozho Apr 15 '11 at 21:27

1 Answer

up vote 2 down vote accepted

The method can end up actually creating a TimeZone (follow the code down) and adding it to a Map. I'm guessing that everyone considered that this isn't a method you should be calling often and took the easy way out.

I'd have difficulty coming up with a legitimate case where this synchronized would be contended. Uncontended synchronized (even in really high-performance cases, which is something I work on quite often) is cheap as chips.

To get contention, you need not just many threads, but many threads that are hitting this particular block of code at the same time. If you were really having a problem with that in this case, you could easily keep your own cache in a ConcurrentHashMap, or in an entirely unlocked structure.

As to why it's not documented - synchronization is a property of the implementation. You'd be welcome to implement an alternative library that doesn't do this synchronization. The JDK docs are documenting the Java libraries, not (for the most part) Sunacle's implementation thereof.

share|improve this answer
or use joda-time, as I do :) thanks for the hints. – Bozho Apr 15 '11 at 21:47
Be aware that joda-time does use synchronization as well.. such as in parsing of strings to joda dates. (also uncontended synchronization though) – bwawok Apr 26 '11 at 16:42

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.