0
votes
1answer
242 views
Hibernate: Collections of Collections
This is a problem I keep on running into:
I would like to have hibernate manage a single table that represents a collection of collections. For example:
a Map of Maps
…
1
vote
5answers
132 views
How to get the results of WHERE conditional evaluations in the result set?
The PROBLEM
I have a query like this:
select a.id from a join b on ( a.id = b.my_a ) join ....
where
( /* complex and expensive conditional …
0
votes
Problem with synchronizing on String objects?
Sorry -- don't have time for a complete detailed answer.
synchronize on StaticCache long enough to see if the entry exists and to put a java.util.concurrent.Future in the cache if it doesn' …
1
vote
How to avoid type safety warnings with Hibernate HQL results?
We had same problem. But it wasn't a big deal for us because we had to solve other more major issues with Hibernate Query and Session.
Specifically:
control when a transaction …
0
votes
What Java Technologies Should College Grad Should Focus On?
Understand what the java VM is doing for each operation.
Examples:
Pretend you are writing a new JVM
what is the data structure that
should be used to enforce the
synchroniz …
0
votes
Should I keep instance variables in Java always initialized or not?
From the name of the class "ItemManager", ItemManager sounds like a singleton in some app. If so you should investigate and really, really, know Dependency Injection. Use something like Spring ( …
2
votes
Hibernate: Collections of Collections
Found the answer elsewhere on the site :-) http://stackoverflow.com/questions/475879/multimap-in-hibernate/47 …
1
vote
Developing a (file) exchange format for java
It looks INsane.
why invent a new file format?
why try to prevent only stupid users from changing file?
why use a binary format ( hard to compress ) ?
why u …
0
votes
Java library class to handle scheduled execution of “callbacks”?
Can't believe java.util.Timer was voted as the answer. Quartz is really a much better choice.
A big advantage of quartz over java.util.Timer is that with quartz the jobs can be stored in th …
1
vote
Why are interfaces preferred to abstract classes?
Respectfully disagree with most of the above posters (sorry! mod me down if you want :-) )
First, the "only one super class" answer is lame. Anyone who gave me that answer i …
0
votes
Is it worth moving from Java to C#, for someone with 3 years of Java experience?
The more languages you know the greater your depth of knowledge about all languages. You will have a greater appreciation for each language's strength and weaknesses.
However, you …
0
votes
JMS alternative? something for decoupling sending emails from http reqs
We have the exact same problem. This may sound a little simplistic but it does work:
Write the request to disk to an "outgoing" mail folder.
Email process reads in the reques …
0
votes
Synchronizing on an Integer value
Steve,
your proposed code has a bunch of problems with synchronization. (Antonio's does as well).
To summarize:
You need to cache an expensive
object.
You ne …
4
votes
Object Pooling
Don't.
This is 2001 thinking. The only object "pool" that is still worth anything now a days is a singleton. I use singletons only to reduce the object creation for purposes of profiling (s …
0
votes
Any suggestions on how to session proof a website?
This is what we do at amplafi.com
(h/t See http://rand …
