This example uses Hibernate with Groovy using Groovy Grapes.
Which produces this output (logging not shown):
Found 2 books: Groovy in Action by Dierk et al Spring in Action by Craig
We can get a little more sophisticated and show a One-to-One relationship as follows:
Where the configureHibernate method needs an additional line:
And creation would become:
We can get even fancier with a one-to-many association (one way to do it):
With creation code like this:
Which has output like this (logging not shown):
Found 2 books: Groovy in Action by Paul, Jon, Guillaume, Dierk, Andy Spring in Action by Craig
Labels