examples and issues
Machiel Groeneveld <[email protected]>
| Newsgroups | gmane.comp.java.keel.user |
|---|---|
| Message-ID | <[email protected]> |
Hi all,
I'm trying to write an application using Keel. So far I've created a
prompter and process model and an entity.
I want to continue on the Keel road, but there is a serious lack of
documentation and (even more important) examples. I saw a post on
creating a demo app in SF and stimulate documentation. I'm willing to
contribute to both.
But as I'm just a novice I have some issues of my own. First of all, I'm
not sure about the integration of Hibernate with Keel persistence. I
just using hibernate xdoclet tags is clearly not enough. So at least
some @persist tags need te be present. But the generic tags seem to be
limited. I'm used to creating a relationships in Hibernate, so I can
have a entity-bean where fields can be other beans.
For example (Person and House are both persistable):
public class Person
{
private House house;
public get/setHouse();
}
I have no idea how to do this with Keel. Perhaps it's easier than I
think but I can't find any documentation on this.
Thanks for any help you can provide
Machiel