3
votes
Licensing: Apache Commons vs. the OpenJDK license
Encumber, but only just. According to the Free Software Foundation, the Apache license is compatible with GPL v3, which theoretically means Apache-licensed stuff can be distributed under a GPL lic …
12
votes
How do you ensure multiple threads can safely access a class field?
If you use 'synchronized' on the setter here too, this code is threadsafe. However it may not be sufficiently granular; if you have 20 getters and setters and they're all synchronized, you may be c …
8
votes
How do I analyze a .hprof file?
If you want a fairly advanced tool to do some serious poking around, look at the Memory Analyzer project at Eclipse, contributed to them by …
7
votes
ResultSet: Retrieving column values by index versus retrieving by label
Warning: I'm going to get bombastic here, because this drives me crazy.
99%* of the time, it's a ridiculous micro-optimization that people have some vague idea makes things 'better'. This c …
2
votes
Exception when not finding
Are you calling getReference(class, primaryKey)? That will throw an exception if the primary key doesn't exist; if you'd like null object returned, use find(class, primaryKey) instead. getReference …
2
votes
Configure Hibernate to escape underscores in LIKE clause using SQL Server dialect
If you're using Criteria to create the query, you can create your own expression which subclasses org.hibernate.criterion.LikeExpression, using one of the protected constructors that takes in 'Char …
10
votes
How do I stop stacktraces truncating in logs
When you see '...113 more', that means that the remaining lines of the 'caused by' exception are identical to the remaining lines from that point on of the parent exception.
For example, yo …
9
votes
Java synchronized methods: lock on object or class
Just to add a little detail to Oscar's (pleasingly succinct!) answer, the relevant section on the Java Language Specification is …
7
votes
Best way to define error codes/strings in Java?
Overloading toString() seems a bit icky -- that seems a bit of a stretch of toString()'s normal use.
What about:
public enum Errors {
DATABASE(1, "A database error has occ …
3
votes
Which Java thread is hogging the CPU?
Try looking at the Hot Thread Detector plugin for visual VM -- it uses the ThreadMXBean API to take multiple C …
2
votes
Can someone explain the conversion from byte array to hex string?
To answer this bit:
Why does that work too
It doesn't. At least, not the same way that the loop version does. new BigInteger(...).toString(16) will not …
0
votes
Concurrent process inserting data in database
The simplest way would seem to be to use the transaction isolation level 'serializable', which prevents phantom reads (other people inserting data which would satisfy a previous SELECT during your …
1
vote
Is there a particular naming convention for Java methods that throw exceptions?
If you need these methods differentiated, I'm sure you can do it in the naming without using a suffix or anything, which is (as others have pointed out) pretty ghastly.
Why have: …
1
vote
Most elegant way to extract data from multiple lists into a new one in Java?
Following the principle of 'use someone else's code', I think the cleanest implementation you'll find will be in …
0
votes
Performance of HashMap with different initial capacity and load factor
Assuming (and this is a stretch) that the hash function is a simple mod 5 of the integer keys
It's not. From HashMap.java:
static int hash(int h …
