Search Results

0
votes
1answer
241 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

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 …
1
vote

HQL to return the index of an object in an ordered query result?

use the List.indexOf() If the list is extra large then make the list "extra-lazy". But why do you need the index? Maybe you really don't (and thus you will not need to solve this issue) …
2
votes

Hibernate: Collections of Collections

Found the answer elsewhere on the site :-) http://stackoverflow.com/questions/475879/multimap-in-hibernate/47 …
4
votes

Hibernate question hbm2ddl.auto possible values and what they do

I would use liquibase for updating your db. hibernate's schema update feature is really only o.k. for a developer while they …
0
votes

Populate envers revision tables with existing data from Hibernate Entities

Wouldn't you just add an initial record via an upgrade SQL when rolling out the change? …
0
votes

OneToOne relationship with shared primary key generates n+1 selects; any workaround?

Stay away from hibernate's OneToOne mapping It is very broken and dangerous. You are one minor bug away from a database corruption problem. …
1
vote

Need an example of a primary-key @OneToOne mapping in Hibernate

You should stay away from hibernate's OneToOne mapping, it is very dangerous. see http://opensource.atlas …
0
votes

How to use hibernate interceptors to populate extra fields in a join table?

You are better off implementing a SaveOrUpdateEventListener, rather than an interceptor. Be sure to add the SaveOrUpdateEventListener this way: private void initSaveOrUpdate …