2
votes
What is the most frequent concurrency problem you’ve encountered in Java?
Starting a thread within the constructor of a class is problematic. If the class is extended, the thread can be started before subclass' constructor is executed.
…
0
votes
Hidden Features of Java
I enjoyed
javadoc's taglet and doclet that enable us to customize javadoc output.
…
-2
votes
Most useful free Java libraries?
Here are my choices.
JUnit
Log4J
Apache Commons Configuration
FindBugs (it is a tool rather than a library)
…
11
votes
0
votes
HashMap intialization parameters (load / initialcapacity)
Referring to HashMap source code will help.
If the number of entries reaches threshold(capacity * load factor), rehashing is done automatically. That means too small load factor can incur f …
0
votes
What are the things Java got right?
Good harmony with IDE tools such as Eclipse, NetBeans, or IntelliJ.
…
3
votes
Question about the Java Garbage Collector, nulls and memory leaking.
Yes, GC works in that case.
But elements between head and tail may survive and then enter old generation space and then
they will be collected during full GC.
As you know, full GC is expensive. As …
5
votes
Hidden features of Eclipse
Absolutely, Ctrl+Q to go to last edit location.
It is very useful just after being interrupted by phone, boss or others.
…
0
votes
Logging Java web applications?
I recommend to call log API (log4j) via slf4j. Even if you use log4j, web container or depending modules may use different log API such as Java.util.logging or Jakarta commons logging. Slf4j provid …
1
vote
How to properly handle error logs?
If multiple servers are running and each server leaves log messages on itself, it is really difficult to trace them. So,somebody or a tool should gather and sort them in time order.
It is a good wa …
1
vote
Anyone know of a java.util.Map implementation optimized for low memory use?
Simply, I recommend to use one of HashMap, Hashtable and ConcurrentHashMap of JDK depending on synchronization or concurrency requirements.
If you decide to use them, setting initialCapacity and lo …
3
votes
Which do you prefer: Java Web Start, or Java Applets?
From my experience, customers don't want their programs to be running inside a browser. But, from Java6 update 10, applets can be running outside of the browser in a separate process. This appealin …
0
votes
Enclosing calls to debug() in if isDebugEnabled(): a good policy?
If "model" is already known, just logging it is not so expensive.
But, if the "model" should be fetched just for logging as below, simplicity can be compromised.
LOGGER.debug("mode …
0
votes
What non-free tools are popular amongst Java developers
JUnit Max for continuous testing in Eclipse.
…
2
votes
How can I get around this classloader hierarchy problem?
Take a look at SLF4J.
Additionally, http://www.qos.ch/logging/classload …
