[jboss-user] [JBoss Seam] - observing database updates

2007-12-01 Thread robshep
I'd like to observe the changes being made to persisted entities. I'm currently using an EntityHome instance for entity management and have something like this. | @Override | public String update() | { | MyObj old = (MyObj)this.getEntityManager().find(MyObj.class, this.getInstanc

[jboss-user] [JBoss Seam] - Re: Examples for nested data

2007-09-30 Thread robshep
I understand the basic concepts. Data organisation for this project is trivial. Houses->Rooms->Chairs "Yacho" wrote : You Can fetch your entity with all referenced data - and display it somehow No I can't hence OP :) The actual display tree component is irrelavent at this stage. Take for

[jboss-user] [JBoss Seam] - Examples for nested data

2007-09-29 Thread robshep
Dear SEAM users, i'm just starting out with SEAM. It's a fairly steep learning curve as this is my first project using any EE concepts. I'm looking for a simple example of a CRUD style app which has a nested/hierchial object model. I.e each object has a OneToMany relation with child objects of