hi,
after playing around with django for a while i got used to having an auto-generated admin interface for all my models right after configuring the ORM ;) (see also
http://www.djangoproject.com/documentation/tutorial02/)
so i wondered myself if it would be possible to have the same features for hibernate.. and.. it seems the meta data which can be retrieved from the SessionFactory would be more than sufficient.. and it's actually very easy ..
i've put up a small "proof of concept" which supports basic CRUD for "simple" models (models with a simple generated primary key and properties of primitive types, date and ManyToOne relations).. i've copied the CSS/HTML from django - you can see it at
http://sphene.net:8080/HibernateAutoAdm ... min.action (no authentication implemented.. no error handling, nothing.. just basic CRUD actions without any checking)
so .. my question is .. before i continue development .. is there already something like it out there ? it seems to be very easy and straight forward.. and you would have a ready-to-use admin interface for small websites, prototypes & co without a single line of extra code ...
cu,
herbert