Tagged Questions

3
votes
2answers
1k views

Maven + Hibernate annotations schema generation

I have a bunch of classes annotated with hibernate annotations. I'm using Maven, Hibernate and Spring. How can I generated the DB schema using hibernate3-maven-plugin's hbm2ddl?
3
votes
1answer
721 views

Mapping Hashmap of Coordinates in Hibernate with Annotation

I've just started using hibernate and I'm trying to map walking distance between two coordinates into a hashmap, There can be many connections from one "FromCoordinate" to another "ToCoordinate". I'm ...
3
votes
5answers
2k views

Hibernate: Mapping User-Friends relation in Social Networks

It's quite some time that I'm trying to figure out this problem and from googling around many people have similar problems. I'm trying to model a User in a Social Network, using Hibernate, and what ...
0
votes
1answer
61 views

Constrained equivalent annotation in hibernate?

How can I use constrained attribute in hibernate annotation onetoone mapping. I mean what is the equivalent attribute of constrained to use in annotations?
0
votes
1answer
78 views

Annotation equivalent to Component in Hibernate

I am aware that using the component tag I can use a part of the class and make it available in an entity in hibernate. How do i achieve this through annotations. Or otherwise, what is the annotation ...